아미(아름다운미소)

[Swift] 셀 선택시, 셀의 배경색깔을 바꾸고 싶을때 본문

랭귀지/SWIFT

[Swift] 셀 선택시, 셀의 배경색깔을 바꾸고 싶을때

유키공 2018. 5. 6. 12:14

셀의 배경색깔을 바꾸고 싶을때

셀 을 선택하면 뒷 배경색깔이 나타나게 되는데 다음의 코드를 넣어주시면, 아래와 같이 셀의 배경색이 변경이 됩니다.
override func tableView(tableView: UITableView, didSelectRowAtIndexPath indexPath: NSIndexPath) {
	var cell = tableView.cellForRowAtIndexPath(indexPath)!
	cell.contentView.backgroundColor = UIColor.whiteColor()
}
Comments