Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- PyQt5
- python
- javascript
- 리눅스
- GIT
- 유니티
- 함수
- MS-SQL
- ubuntu
- swift
- Excel
- urllib
- IOS
- 날짜
- tensorflow
- pandas
- 맛집
- 라즈베리파이
- sqlite
- Linux
- mssql
- Unity
- MySQL
- node.js
- 다이어트
- flutter
- port
- PER
- ASP
- PyQt
Archives
목록셀의 배경색 변경 (1)
아미(아름다운미소)
[Swift] 셀 선택시, 셀의 배경색깔을 바꾸고 싶을때
셀의 배경색깔을 바꾸고 싶을때 셀 을 선택하면 뒷 배경색깔이 나타나게 되는데 다음의 코드를 넣어주시면, 아래와 같이 셀의 배경색이 변경이 됩니다. override func tableView(tableView: UITableView, didSelectRowAtIndexPath indexPath: NSIndexPath) { var cell = tableView.cellForRowAtIndexPath(indexPath)! cell.contentView.backgroundColor = UIColor.whiteColor() }
랭귀지/SWIFT
2018. 5. 6. 12:14