Searchdisplaycontroller Deprecated in iOS 8

searchDisplayController' is deprecated: first deprecated in iOS 8.0

.h

@property (strong, nonatomic) UISearchController *searchController;

.m

[self filterContentForSearchText:searchText scope:[[self.searchController.searchBar scopeButtonTitles] objectAtIndex:[self.searchController.searchBar selectedScopeButtonIndex]]];

this coding working well....

What is the alternative for searchDisplayController in iOS 8?

The alternative is UISearchController. If you set your Deployment Target to ios 7.x in the project file it will still work on iOS7

https://developer.apple.com/library/IOs/documentation/UIKit/Reference/UISearchController/index.html#//apple_ref/occ/cl/UISearchController



Related Topics



Leave a reply



Submit