0

この質問によると、iOS の任意の UITextField のキーボードの外観を変更できます。アラート キーボードは、iOS の任意のテキスト フィールドに使用できますか?

しかし、UISearchBar はどうですか? [searchBarInstance setKeyboardAppearance:UIKeyboardAppearanceAlert];UISearchBar にはこのメソッドがないため、機能しないため、その方法はありますか。

4

1 に答える 1

5

あなたはこのようにすることができます、

for(UIView *subView in searchBar.subviews)
  if([subView isKindOfClass: [UITextField class]])
    [(UITextField *)subView setKeyboardAppearance: UIKeyboardAppearanceAlert];

iPhone UISearchBar & keyboardAppearanceを参照してください。

于 2012-10-06T11:16:59.830 に答える