tableView 載入資料完成的判斷

weixin_34249678發表於2017-04-20

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

{

if([indexPath row] == ((NSIndexPath*)[[tableView indexPathsForVisibleRows] lastObject]).row){

dispatch_async(dispatch_get_main_queue(), ^{

//end of loading

//for example [activityIndicator stopAnimating];

});

}

}

相關文章