美文网首页iOS进阶
iOS 取消 UITableView 向下偏移状态栏高度

iOS 取消 UITableView 向下偏移状态栏高度

作者: Vergil_wj | 来源:发表于2019-12-30 11:19 被阅读0次

    iOS 隐藏导航栏后,取消 UITableView 向下偏移状态栏高度

    if (@available(iOS 11.0, *)) {
        self.tableView.contentInsetAdjustmentBehavior = UIScrollViewContentInsetAdjustmentNever;
    } else {
        self.automaticallyAdjustsScrollViewInsets = NO;
    }
    

    相关文章

      网友评论

        本文标题:iOS 取消 UITableView 向下偏移状态栏高度

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