我的TableView一直在重复第一个单元格,我无法解决问题。我在这里搜索并找到了一个相关的帖子(UITableView Cells All Repeat 1st Cell)。
我发现问题在于我没有在cellForRowAtIndexPath方法中指定该部分。我知道我必须在我的代码中实现indexPath.section,但我无法弄清楚如何/在哪里。
非常感谢任何帮助!
override func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell
{
let cellIdentifier = "Cell"
let cell = tableView.dequeueReusableCellWithIdentifier(cellIdentifier, forIndexPath:indexPath) as CustomTableViewCell
// Configure the cell...
let entry = entries[indexPath.row]
cell.entryTextView!.text = entry.bodyText
cell.entryDayLabel!.text = entry.day
cell.entryDateLabel!.text = entry.date
return cell
}