tvOS: UISearchController внутри строки меню UITabBar не выводит панель вкладок (фокус)

#objective-c #uiviewcontroller #uinavigationcontroller #uistoryboard #tvos

#objective-c #uiviewcontroller #uinavigationcontroller #uistoryboard #tvos

Вопрос:

 UIStoryboard *storyboard = [UIStoryboard storyboardWithName:@"Main" bundle:nil];

_searchResultsController = [storyboard instantiateViewControllerWithIdentifier:@"SearchVC"];
_searchController = [[SearchResultsViewController alloc] initWithViewController:_searchResultsController];

_containerVC = [[UISearchContainerViewController alloc] initWithSearchController: _searchController];
//self.backgroundView.backgroundColor = self.view.backgroundColor;
_containerVC.view.backgroundColor = [UIColor clearColor];
self.backgroundView.backgroundColor = self.view.backgroundColor;
_searchController.view.backgroundColor = self.view.backgroundColor;

UINavigationController *navigationController = [[UINavigationController alloc] initWithRootViewController: _containerVC];
[self.backgroundView addSubview:navigationController.view];
  

Комментарии:

1. Я хочу сосредоточиться на UITabBarItem, под которым я добавляю SearchController при нажатии кнопки меню (как и все другие TabBarItems)