我有一个带有字幕样式单元格的简单表格视图。 创建单元格的第一次,直到我选择单元格才会显示单元格的字幕。正确创建所有其他单元格。 任何想法为什么这应该是,或我能做些什么呢? 谢谢 卡尔
创建单元格的代码很简单,除了第一个单元格之外的所有单元格都适用:
func configureCell(cell: UITableViewCell, atIndexPath indexPath: NSIndexPath) {
let object = self.fetchedResultsController.objectAtIndexPath(indexPath) as! Course
cell.textLabel!.text = object.courseName
cell.textLabel!.textColor = appConstants.colors.appCellTitleColor
cell.detailTextLabel!.text = object.courseBanner
cell.detailTextLabel!.textColor = appConstants.colors.appCellDetailTextColor
//cell.imageView!.image = UIImage(named: "TBC Logo, Tableview, Course, Clear")
}
由于