当前位置: 代码迷 >> 综合 >> iOS tableView 加载到最后一行之后再刷新一次页面方法
  详细解决方案

iOS tableView 加载到最后一行之后再刷新一次页面方法

热度:34   发布时间:2023-12-22 17:51:49.0
    //    tableview 加载完成可以调用的方法-(void) tableView:(UITableView *)tableView willDisplayCell:(UITableViewCell *)cell forRowAtIndexPath:(NSIndexPath *)indexPath{if([indexPath row] == ((NSIndexPath*)[[tableView indexPathsForVisibleRows]lastObject]).row){//end of loadingdispatch_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];});}}

 

  相关解决方案