[Solved] Insert a UISearchBar in IOS 8, Xcode 6 [closed]


I had to do the same you are doing a few months ago. So, I found this on GitHub: https://github.com/dempseyatgithub/Sample-UISearchController
Download/clone it and you’ll be able to see how to use UISearchController with UITableView and UICollectionView. It has everything you need to upgrade from UISearchDisplayController to UISearchController. The UISearchController documentation is also really helpful.
If you also need to support iOS 7(something I personally recommend if you are really about to deploy your app to the App Store) do this:

if([UISearchController class]){
//Create an UISearchController and add it to your UITableViewController
}else{
//Create an UISearchDisplayController and add it to your UITableViewController 
}

Note: You’ll have to do everything programatically if you want to support both versions of iOS.

Best regards,

Gabriel Tomitsuka

2

solved Insert a UISearchBar in IOS 8, Xcode 6 [closed]