UISearchBar presented by UISearchController in table header view animates too far when active

后端 未结 15 1051
长情又很酷
长情又很酷 2020-11-29 01:28

I am using UISearchController to present a search bar inside the header view of a tableview:

...
self.searchController.hidesNavigationBarDuringPresentation =         


        
15条回答
  •  庸人自扰
    2020-11-29 02:00

    Found it! This seems to be the offensive line in viewDidLoad of the presenting vc:

    self.edgesForExtendedLayout = UIRectEdgeNone;
    

    Removed that and the search bar stayed in place as predicted.

提交回复
热议问题