Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
重複の可能性: UISearchBar キーボードの [検索] ボタンを無効/有効にするにはどうすればよいですか?
検索バーのキーボードの [検索] ボタンを無効にすることはできますか? ユーザーが検索バーに3文字入力した後に有効にしたい。
どうやら、それはできません。UISearchBar のデリゲートを実装する必要があります
- searchBarSearchButtonClicked:
次のように、デリゲートに条件を追加するだけです。
- (void)searchBarSearchButtonClicked:(UISearchBar *)searchBar1 { if ([searchBar.text length] < 3){ return; } else { // Do searching here or other stuffs } }