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.
ユーザーが一般的な検索バーの空のテキストフィールドを押したことを検出するにはどうすればよいですか?
UITextField1)テキストフィールド(または)のデリゲートプロパティを設定する必要がありますUISearchBar。
UITextField
UISearchBar
2)次の方法をデリゲートで実装する必要があります。
- (BOOL)textFieldShouldBeginEditing:(UITextField *)textField
また
- (BOOL)searchBarShouldBeginEditing:(UISearchBar *)searchBar
これは、ユーザーがテキストを入力したいときに呼び出されます。