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

后端 未结 15 1072
长情又很酷
长情又很酷 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 01:54

    Old question but I was able to solve this issue by setting

    self.extendedLayoutIncludesOpaqueBars = YES;

    on my view controller. I think is issue is caused by having an opaque navigation bar but setting hidesNavigationBarDuringPresentation to NO on your search controller, causing the search bar to incorrectly position itself when focused.

提交回复
热议问题