美文网首页
iOS 关于UITableviewWrapperview显示不正

iOS 关于UITableviewWrapperview显示不正

作者: CCSHCoder | 来源:发表于2019-01-18 11:05 被阅读15次

问题:就算是设置了automaticallyAdjustsScrollViewInsets = NO 或者 contentInsetAdjustmentBehavior = UIScrollViewContentInsetAdjustmentNever; 不起作用 查看显示UITableviewWrapperviewUITableView 位置不一致

//添加一个UIScrollView到最下层,让UIViewController去自动适配你添加的这个
if (!self.sh_scroll) {
    self.sh_scroll = [[UIScrollView alloc]init];
     [self.view addSubview:self.sh_scroll];
}
[self.view sendSubviewToBack:self.sh_scroll];

相关文章

网友评论

      本文标题:iOS 关于UITableviewWrapperview显示不正

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