Brian Mancini

Brian Mancini

Brian works for Altangent Labs where he works on Bitcoin and the Lighting Network. He is creator of node-lightning and a contributor to rust-lightning.

Pittsburgh
175 posts
Twitter
ios

Programmatic search in iOS

Code Sample: @interface MyViewController @property (strong, nonatomic) NSArray *venues; @property (strong, nonatomic) NSArray *searchResults; @end - (void)loadView { [super loadView]; UISearchBar *searchBar = [[UISearchBar alloc]init]; self.searchController = [[UISearchDisplayController alloc] initWithSearchBar:searchBar contentsController:self]; self.searchController.searchResultsDelegate = self; self.searchController.searchResultsDataSource = self; self.searchController.delegate