1
我想將UISearchBar的鍵盤類型設置爲UIKeyboardAppearanceAlert,但我似乎無法訪問UISearchBar的UIKeyboard。如何在使用UISearchBar時更改UIKeyboard?
我想將UISearchBar的鍵盤類型設置爲UIKeyboardAppearanceAlert,但我似乎無法訪問UISearchBar的UIKeyboard。如何在使用UISearchBar時更改UIKeyboard?
您需要訪問UISearchBar
本身的內部UITextField
。
UITextField *textField = (UITextField *)[[searchBar subviews] objectAtIndex:0];
textField.keyboardAppearance = UIKeyboardAppearanceAlert;
謝謝! 正確的屬性是keyboardAppearance的方式。 – 2010-06-15 17:58:54