UISearchController searchBar in tableHeaderView animating out of the screen

前端 未结 8 1415
南方客
南方客 2020-12-25 11:13

I have a UISearchController with a UITableViewController as a searchResultsController, the UISearchBar of this sear

相关标签:
8条回答
  • 2020-12-25 12:06

    Add

    self.extendedLayoutIncludesOpaqueBars = YES;
    

    on viewDidLoad method

    0 讨论(0)
  • 2020-12-25 12:07

    I noticed that the UISearchController works perfectly in one of the my views but not the other. The problem was with the UITableViewController and not the UIViewController. If you switch to a UIViewController with a UITableView inside it and properly constrained there are no issues. I implemented mine with a XIB and it worked perfectly.

    0 讨论(0)
提交回复
热议问题