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