需要使用
let cell = tableView.dequeueReusableCellWithIdentifier(cellId, forIndexPath: indexPath) as? TaskInviteCell
创建cell
不用要
let reCell = tableView.dequeueReusableCellWithIdentifier(cellId)
var cell : TaskInviteCell?
if reCell == nil {
cell = UITableViewCell(style: .Default, reuseIdentifier: cellId) as? TaskInviteCell
}else{
cell = reCell as? TaskInviteCell
}
网友评论