2011-05-30 66 views
-2

任何人都可以讓我想法實施iPhone/ipad開發內部應用聚光燈搜索嗎?如何在iphone/ipad開發中實現聚光燈搜索應用內部

+1

Siva,你想達到什麼目的? (1)在您的應用程序中獲取iOS Spotlight搜索搜索? (2)或者實施一個像聚光燈一樣的搜索欄?我在問,因爲下面的答案似乎回答#2,而不是#1。 – Reuven 2011-06-20 10:53:09

回答

1

您應該將所有搜索項存儲在一個數組中。當用戶開始搜索時(使用UISearchBar),代碼如下代表

- (void)searchBar:(UISearchBar *)searchBar textDidChange:(NSString *)searchText 
{ 
    //Find all the value matches your searchText 
    //Display them in a tableView. 
} 
相關問題