iOS tableView 載入到最後一行之後再重新整理一次頁面方法
阿新 • • 發佈:2018-11-16
// tableview 載入完成可以呼叫的方法 -(void) tableView:(UITableView *)tableView willDisplayCell:(UITableViewCell *)cell forRowAtIndexPath:(NSIndexPath *)indexPath { if([indexPath row] == ((NSIndexPath*)[[tableView indexPathsForVisibleRows]lastObject]).row){ //end of loading dispatch_async(dispatch_get_main_queue(), ^{ // // // // self.detailListView.frame // = CGRectMake(self.detailListView.frame.origin.x,self.detailListView.frame.origin.y,MAIN_WIDTH, // tableView.contentSize.height); // [tableView reloadData]; }); } }