在cellForRowAtIndexPath之后添加一个处理程序?

时间:2016-06-20 21:23:12

标签: swift uitableview

我想知道是否可以在方法cellForRowAtIndexPath中添加等待返回单元格的处理程序。

这样的处理程序:

func loadUserPicture(_width: CGFloat, _height: CGFloat, completionHandler : (_imageView:UIImageView, _image:UIImage)->())
       {
...
}

1 个答案:

答案 0 :(得分:0)

你可以打电话

- (void)tableView:(UITableView *)tableView willDisplayCell:(UITableViewCell *)cell forRowAtIndexPath:(NSIndexPath *)indexPath;

并重新加载上一个最后一个单元格。此方法在tableView:cellForRowAtIndexPath:之后调用。