UISearchDisplayController ( PageSheet) iPad iOS7: UISearchDisplayController , iPhone.
, , tableView, UISearchDisplayController, :
- (void)searchDisplayController:(UISearchDisplayController *)controller didLoadSearchResultsTableView:(UITableView *)tableView
{
if ([[UIDevice currentDevice] userInterfaceIdiom] == UIUserInterfaceIdiomPad)
{
tableView.frame = self.view.frame;
[self.view addSubview:tableView];
}
}
:
- , 50% self.view
- , , UISearchDisplayController.
:
- (void)searchDisplayController:(UISearchDisplayController *)controller willShowSearchResultsTableView:(UITableView *)tableView
{
tableView.contentInset = UIEdgeInsetsMake(44.f, 0.f, 0.f, 0.f);
}