码迷,mamicode.com
首页 > 其他好文 > 详细

UITableView 出现默认滚动到底部的方法(不闪动)

时间:2018-09-11 16:14:37      阅读:163      评论:0      收藏:0      [点我收藏+]

标签:cgpoint   poi   操作   table   int   self   oms   底部   添加   

- (void)viewDidLoad {

    [super viewDidLoad];

// 添加控件等操作

    [self.customsTableView reloadData];

    dispatch_async(dispatch_get_main_queue(),^{

        if (self.customsTableView.contentSize.height >kScreenHeight) {

            [self.customsTableView setContentOffset:CGPointMake(0, self.customsTableView.contentSize.height -self.customsTableView.bounds.size.height) animated:NO];

        }

    });

}

 

UITableView 出现默认滚动到底部的方法(不闪动)

标签:cgpoint   poi   操作   table   int   self   oms   底部   添加   

原文地址:https://www.cnblogs.com/ruixin-jia/p/9627720.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!