I am trying to implement search in tvOS and somehow achieved to show controller in tvOS. The issue is that I know how to present the UISearchController but I want to show it on the same home screen. I am using a tab bar and I have a multiple menu, which also has search option.
UISearchController *searchController = [[UISearchController alloc] initWithSearchResultsController:nil];
[self presentViewController:searchController animated:YES completion:nil];
This how I am currently presenting, rather then present it as a new controller I want to show it on the same screen. I tried in many ways but nothing gives me exactly what I want. If any one has idea please provide some suggestion! Thanks in advance.