1
可能重複:
How can I disable/enable UISearchBar keyboard's Search button?在搜索欄鍵盤禁用「搜索」按鈕
我們能在鍵盤的搜索欄禁用「搜索」按鈕?我想在用戶在搜索欄中輸入3個字符後啓用它。
可能重複:
How can I disable/enable UISearchBar keyboard's Search button?在搜索欄鍵盤禁用「搜索」按鈕
我們能在鍵盤的搜索欄禁用「搜索」按鈕?我想在用戶在搜索欄中輸入3個字符後啓用它。
顯然,你不能那樣做。您需要實現的UISearchBar的委託
- searchBarSearchButtonClicked:
你可以只是在你的委託添加一個條件,如:
- (void)searchBarSearchButtonClicked:(UISearchBar *)searchBar1 {
if ([searchBar.text length] < 3){
return;
}
else {
// Do searching here or other stuffs
}
}
這看起來像這樣的副本和粘貼:http://stackoverflow.com/a/9722139/419 – Kev
請檢查下面的鏈接: http://stackoverflow.com/questions/9721668/如何禁用啓用 - uisearchbar鍵盤搜索按鈕 –