UISearchDisplayController UITableViewController , .
, " " UITableView ( , UIStoryboard), UITableView, UITableViewController , UITableView.
:
UITableView, , self.tableView (, , _tableView).
UITableView, ( ), self.searchDisplayController.searchResultsTableView
, UITableView search UITableView , ( TVC )...
- (void)viewDidLoad {
[super viewDidLoad];
[self.tableView setBackgroundView:nil];
[self.tableView setBackgroundColor:[UIColor blackColor]];
[self.searchDisplayController.searchResultsTableView setBackgroundView:nil];
[self.searchDisplayController.searchResultsTableView setBackgroundColor:[UIColor blackColor]];
}
...
UPDATE
, , , "" Xcode. UISearchBar, UITableViewController, . . , UISearchBar UISearchDisplayController, .
, ...
Olof UITableView.
, , viewDidLoad:
- (void)viewDidLoad {
[super viewDidLoad];
...<other code>...
CGRect frame = self.tableView.bounds;
frame.origin.y = -frame.size.height;
UIView* viewBackgroundBlack = [[UIView alloc] initWithFrame:frame];
[viewBackgroundBlack setBackgroundColor:[UIColor blackColor]];
[self.tableView addSubview:viewBackgroundBlack];
[self.tableView setBackgroundView:nil];
[self.tableView setBackgroundColor:[UIColor blackColor]];
[self.searchDisplayController.searchResultsTableView setBackgroundView:nil];
[self.searchDisplayController.searchResultsTableView setBackgroundColor:[UIColor blackColor]];
}