UISearchBar on UITableView strange offset issue

前端 未结 4 1852
情书的邮戳
情书的邮戳 2021-01-02 06:10

I have a UITableView which has a UISearchBar subview. This is all on the view of a UIViewController along with a few other subviews (l

4条回答
  •  傲寒
    傲寒 (楼主)
    2021-01-02 06:38

    Update : automaticallyAdjustsScrollViewInsets has been deprecated in ios 11 and a new field contentInsetAdjustmentBehavior has been introduced.

    if #available(iOS 11.0, *) {
        tableview.contentInsetAdjustmentBehavior = .never
    } else {
        automaticallyAdjustsScrollViewInsets = false
    }
    

提交回复
热议问题