¡@

Home 

2014/10/15 ¤U¤È 10:13:59

iphone Programming Glossary: setsearchdisplaycontroller

Gray UISearchBar w/matching scope bar programmatically

http://stackoverflow.com/questions/2959299/gray-uisearchbar-w-matching-scope-bar-programmatically

but without retaining. Force the read only property to be set and retained. self performSelector @selector setSearchDisplayController withObject searchDC searchDC.delegate self searchDC.searchResultsDataSource self searchDC.searchResultsDelegate self searchBar..

setSearchDisplayController considered private-API?

http://stackoverflow.com/questions/3059506/setsearchdisplaycontroller-considered-private-api

considered private API I recently submitted an app for app review but I got rejected because of the use of a private API... UISearchDisplayController alloc initWithSearchBar searchBar contentsController self self performSelector @selector setSearchDisplayController withObject searchDisplayController searchDisplayController setDelegate self searchDisplayController setSearchResultsDataSource.. setSearchResultsDelegate self searchDisplayController release The part that they mentioned was the setSearchDisplayController . I based the searching of a UITableView on the example given here . So can anyone explain why this is considered a private..