技巧

【开发笔记】让tableView滑到最后一行

2018-01-11  本文已影响7人  洛奇丶

不开线程:

开线程:

//滑到最后一行

-(void)scrollToLastRow:(NSMutableArray *)arrModelData{

    if (arrModelData>0) {

        dispatch_async(dispatch_get_main_queue(), ^{

            [self.tableView reloadData];

            if (arrModelData.count > 0) {

                NSIndexPath *path=[NSIndexPath indexPathForItem:arrModelData.count-1 inSection:0];

                [self.tableView scrollToRowAtIndexPath:path atScrollPosition:UITableViewScrollPositionNone animated:NO];//将tableView的行滚到最下面的一行

            }

        });

    }

}

//开线程的时候

  dispatch_async(dispatch_get_main_queue(), ^{

        [self.tableView reloadData];

        NSLog(@"%.0f", self.tableView.contentSize.height);

        CGPoint offset = CGPointMake(0,self.tableView.contentSize.height - self.tableView.frame.size.height);

        if (offset.y < 0) {

            offset = CGPointMake(0, -44);

        }

        [self.tableView setContentOffset:offset animated:NO];

    });

上一篇下一篇

猜你喜欢

热点阅读