如何使用inputView属性?
我创建了自己的键盘,我想在 uitextview
中打开它来代替 iPhone 提供的标准键盘来输入文本。在 Apple 文档中,我找到了一个属性 inputView。 在此链接上给出:-此处< /a> 但我不知道如何使用这个属性。请告诉我如何正确使用这个属性。 我尝试过像这样使用这个属性
UIView *mainView;
@property (readwrite,retain) IBOutlet UIView *mainView;
- (UIView *)inputView {
return mainView;
}
I have created my own keyboard and I want to open that in place of standard keyboard provided by the iPhone in the uitextview
to enter text.In the Apple documentation I have found one property inputView
in the UIResponder Class Reference.
It is given on this link :-here
But I m not getting how to use this property.please tell me how to use this property prorpely.
I have tried to use this proerty like this
UIView *mainView;
@property (readwrite,retain) IBOutlet UIView *mainView;
- (UIView *)inputView {
return mainView;
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
那是一种财产。您不必覆盖其实现。只需将其用作任何其他常规属性并影响您的自定义输入视图即可。
That's a property. You don't have to override its implementation. Just use it as any other regular property and affect to it your custom input view.