tableView의 cell 안에 2줄이상 사용할 때
2016. 7. 6. 13:14ㆍProgramming/Swift
반응형
func tableView(tableView: UITableView, heightForRowAtIndexPath indexPath: NSIndexPath) -> CGFloat { // you can also programmatically calculate a desired if(indexPath.section==0) { //첫번째 섹션 일때 return 80 // 셀 크기를 80으로 지정 } else { return 44 } return 0 } func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell { cell.HomeMenuItemLabel.numberOfLines = 4; //셀의 라인을 4줄까지 한다. } |
주의 할 점은 셀크기가 작으면 셀의 라인을 늘려도 보여지지 않는다.
적절한 크기로 잘 맞춰야 할 듯...
반응형