【发布时间】:2015-03-11 23:08:15
【问题描述】:
我想更改此代码:
override func tableView(tableView: UITableView, didEndDisplayingCell cell: UITableViewCell, forRowAtIndexPath indexPath: NSIndexPath) {
}
像这样:
override func tableView(tableView: UITableView, didEndDisplayingCell cell: CustomCell, forRowAtIndexPath indexPath: NSIndexPath) {
}
但我收到一条错误消息。 我需要在 CustomCell 消失时更改它。我该如何处理?
【问题讨论】:
标签: swift custom-cell tableviewcell