vicki753's iOS 基础 - UITableView刷新最后一个调用方法

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

你可能感兴趣的:(vicki753's iOS 基础 - UITableView刷新最后一个调用方法)