我有兩個原型單元格。其中一個用於顯示數據&其他我用於標題視圖。多個原型單元格標題在刪除時移動
當我嘗試刪除我的常規細胞。標題單元隨它一起移動。
我不想頭,當我試圖刪除定期細胞移動。
我已禁用標題原型單元格上的用戶交互。它仍然在繼續前進。在提交編輯樣式中,我立即返回標題原型單元格。它仍然在繼續前進。我不知道還有什麼要做。請幫忙。
func tableView(tableView: UITableView, viewForHeaderInSection section: Int) -> UIView? {
if tableView == upcomingTableView {
if let headerCell = tableView.dequeueReusableCellWithIdentifier("headerCell") {
headerCell.textLabel?.text = sectionNames[section]
headerCell.detailTextLabel?.text = "Rs\(sum[section])"
headerCell.detailTextLabel?.textColor = UIColor.blackColor()
headerCell.backgroundColor = UIColor.lightGrayColor()
return headerCell
}
}
return nil
}
cell for row at index path is also regular code。
從表視圖委託方法添加一些代碼。 –