我正在使用UISearchController制作搜索页面,并将searchBar添加为tableHeaderView。但是当我的结果出现在tableview中时,它的内容偏移量为-20px。(我正在使用Tabbar并推送此searchVC) 我正在使用swift 3并检查iOS 10中的代码。
我尝试了几件事,但它在iOS 10中没有用,
比如self.automaticallyAdjustsScrollViewInsets = false
这是我的searchVC
self.resultSearchController = (
{
let controller = UISearchController(searchResultsController: nil)
controller.searchResultsUpdater = self
controller.dimsBackgroundDuringPresentation = false
controller.searchBar.sizeToFit()
self.searchTable.tableHeaderView = controller.searchBar
return controller
})()
这里我附上了ScreenShot的问题,我的单元格被切断了20px(例如VIEW ALL按钮)。
任何人都可以帮助我解决这个问题。