美文网首页
vicki753's iOS 基础 - UITableV

vicki753's iOS 基础 - UITableV

作者: vicki753 | 来源:发表于2018-11-27 16:01 被阅读6次

对于需要在刷新完成row之后再进行的代码操作,可以实现该方法
-(void)tableView:(UITableView *)tableView willDisplayCell:(UITableViewCell *)cell forRowAtIndexPath:(NSIndexPath *)indexPath {
if ([indexPath row] == [[tableView indexPathsForVisibleRows]lastObject].row) {
// 加载完最后一个cell后实现代码
[self initialRAC];
}
}

相关文章

网友评论

      本文标题:vicki753's iOS 基础 - UITableV

      本文链接:https://www.haomeiwen.com/subject/trogqqtx.html