일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
- javascript
- PER
- ubuntu
- swift
- 유니티
- urllib
- tensorflow
- MS-SQL
- flutter
- 함수
- ASP
- 맛집
- port
- GIT
- 리눅스
- PyQt5
- PyQt
- Unity
- 라즈베리파이
- pandas
- mssql
- IOS
- 날짜
- python
- Linux
- node.js
- 다이어트
- MySQL
- sqlite
- Excel
목록UITableViewCell (3)
아미(아름다운미소)
UITableViewCell 선택 스타일을 사용하지 않도록 설정 ... //테이블 셀 객체를 직접 생성하는 대신 큐로부터 가져옴 let cell = tableView.dequeueReusableCell(withIdentifier: "ListCell") as! ContractCell // UITableViewCell 선택 스타일을 사용하지 않도록 설정 cell.selectionStyle = UITableViewCellSelectionStyle.none }
UITableViewCell의 ImageView를 고정 func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell { ... cell.imageView?.image = myImage let itemSize = CGSize(width:42.0, height:42.0) UIGraphicsBeginImageContextWithOptions(itemSize, false, 0.0) let imageRect = CGRect(x:0.0, y:0.0, width:itemSize.width, height:itemSize.height) cell.imageView?.image!.draw(in:imageRect) c..
[Swift 3/4] Selecting and Deselecting UITableViewCells - Swift //색상 변경을위해 cellForRowAt 메소드에 코딩 func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) ->UITableViewCell{ if self.selectedIndex == indexPath.row { cell.firstView.backgroundColor = UIColor.orange // Highlight color }else { cell.firstView.backgroundColor = UIColor.clear // Original color } } //배경 색상을 제거하려면 이전 행을 업데..