0
我正在嘗試製作基於背景顏色更改單元格高度的應用程序。我想擁有它,這樣如果它們的背景顏色是青色或橙色,單元格會更小,但我似乎無法找到正確的方法來完成它。我有代碼來改變高度,但我不知道使用正確的參數。基於背景顏色不能更改單元格高度
override func tableView(tableView: UITableView,
heightForRowAtIndexPath indexPath: NSIndexPath) -> CGFloat {
if indexPath.row == 1 {//should be if cell.backgroundcolor or something
return 100 //noncolored cells
} else {
return 20 // colored cells
}
}
你有能力解決這個問題嗎? – Miknash