1
的我使用的是海誓山盟的前兩名搜索欄在我的佈局像這樣:調整大小的UITableView UISearchDisplayController
兩個搜索欄中有顯示建議表UISearchDisplayController。
我的問題是,頂部的搜索欄的顯示控制器繪製其UITable在底部搜索欄,如下所示:
我試圖向下移動底部表中uisearchdisplaydelegate像這樣:
- (void)searchDisplayController:(UISearchDisplayController *)controller
didLoadSearchResultsTableView:(UITableView *)tableView
{
float yOffset = 50.0f;
tableView.frame = CGRectMake(tableView.frame.origin.x,tableView.frame.origin.y + yOffset,tableView.frame.size.width, tableView.frame.size.height);
}
但即使該方法在正確的時間被調用,它似乎沒有做任何事情。
標識基本上像頂部搜索欄建議表位於相同的位置底部搜索欄建議表
我用故事板和自動佈局最新的Xcode