美文网首页
IOS(swift) 11 UITableView 顶部间距 缝

IOS(swift) 11 UITableView 顶部间距 缝

作者: nooob | 来源:发表于2017-11-02 15:37 被阅读0次

在viewDidLoad()中添加代码
所有tableview

if #available(iOS 11.0, *) {
        UIScrollView.appearance().contentInsetAdjustmentBehavior = UIScrollViewContentInsetAdjustmentBehavior.never
    } else {
        // Fallback on earlier versions
    }

指定tableview

if #available(iOS 11.0, *) {
        tableView.contentInsetAdjustmentBehavior = UIScrollViewContentInsetAdjustmentBehavior.never
    } else {
        // Fallback on earlier versions
    }

相关文章

网友评论

      本文标题:IOS(swift) 11 UITableView 顶部间距 缝

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