我想在UITextField
未启用 is 属性时显示光标。在我的应用程序中,我放置了键盘按钮(A、B、C ...)。但是在这里,当我从自定义键盘单击任何字母按钮而不打开默认的 iphone 键盘时,我想显示一个光标。
问问题
830 次
2 回答
1
You can implement Custom Views for Data Input on iOS. Basically you can define a custom keyboard with your own characters and it will wirk the same as the default keyboards.
于 2012-09-15T10:45:20.147 回答
1
似乎您正在寻找UITextField
带有自定义键盘并在您按下任何 aphabet 时显示光标。如果那是正确的......首先创建类CustomKeyboard : UIView
并添加按钮/布局视图。其次,您的文本字段只需将 inputView 属性设置为 CustomKeyboard 类的实例textField.inputView = customKeyboard
;。第三您还需要将inputView
属性设置readwrite
为@property (readwrite, retain) UIView *inputView;
通过设置 inputView 属性,当文本字段成为第一响应者时,标准 iPhone 键盘将不会出现。
这样你就可以得到你想要的......
于 2012-09-15T10:54:32.740 回答