标签: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];
}
});
}
标签:cgpoint poi 操作 table int self oms 底部 添加
原文地址:https://www.cnblogs.com/ruixin-jia/p/9627720.html