美文网首页
UITableView滑动高度及其解决不准问题

UITableView滑动高度及其解决不准问题

作者: 云霄_云霄 | 来源:发表于2018-11-27 11:22 被阅读0次

    1、设置TanleView预加载section高度及其row高度,

    _groupTableView.estimatedRowHeight =0; _groupTableView.estimatedSectionFooterHeight=0;_groupTableView.estimatedSectionHeaderHeight = 0;

    2、检查TableView有没有在什么地方设置了contentInset属性,如果有会有一定的影响。可以设置为tableView.contentInset = UIEdgeInsetsMake(0, 0, 0, 0);即可。

    3、下面滑动到指定section及其row的时候,切记动画要设置为NO,才能准确。

    NSIndexPath * dayOne = [NSIndexPath indexPathForRow:0 inSection:0];
            [_groupTableView scrollToRowAtIndexPath:dayOne atScrollPosition:UITableViewScrollPositionTop animated:NO];

    相关文章

      网友评论

          本文标题:UITableView滑动高度及其解决不准问题

          本文链接:https://www.haomeiwen.com/subject/gkfgqqtx.html