美文网首页
iOS 11 push

iOS 11 push

作者: 阶梯 | 来源:发表于2017-09-25 10:47 被阅读22次

iOS 11 push的时候,会窜一下的解决方案暂时还没有找到更好的方法,暂时这个方法可以解决问题,谁有更好的方法,可以分享下

_mainTableView = [[UITableView alloc]initWithFrame:CGRectMake(0, 0, KScreenWidth, KScreenHeight - StatusRectHeight - NavRectHeight) style:(UITableViewStylePlain)];
if (@available(iOS 11.0, *)) {
            _mainTableView.contentInsetAdjustmentBehavior = UIScrollViewContentInsetAdjustmentNever;
        } else {
            // Fallback on earlier versions
            self.automaticallyAdjustsScrollViewInsets = NO;
        }

相关文章

网友评论

      本文标题:iOS 11 push

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