0

是否可以在 iOS 5 或更高版本中为 iPhone 或 iPad 创建自定义键盘?我的想法是我必须用一些图标创建自己的键盘。它会在文本字段中开始文本时弹出自定义键盘。可能吗?提前致谢。

4

1 回答 1

1

您可以制作自定义输入视图,但只能在您的应用程序中(即您不能在整个设备上替换键盘):https ://developer.apple.com/library/ios/documentation/StringsTextFonts/Conceptual/TextAndWebiPhoneOS/InputViews/ InputViews.html#//apple_ref/doc/uid/TP40009542-CH12-SW2

本质上,您只需将自定义视图分配给 UITextView 的 inputView 属性(https://developer.apple.com/library/ios/documentation/UIKit/Reference/UITextField_Class/Reference/UITextField.html#//apple_ref/occ/instp /UITextField/inputView ) 并且您的自定义视图将在您的输入成为第一响应者时显示。

于 2013-10-02T07:26:40.457 回答