如何使用inputView属性?

发布于 2024-12-07 08:10:40 字数 506 浏览 1 评论 0原文

我创建了自己的键盘,我想在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

两个我 2024-12-14 08:10:40

那是一种财产。您不必覆盖其实现。只需将其用作任何其他常规属性并影响您的自定义输入视图即可。

yourTextField.inputView = yourCustomInputView;

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.

yourTextField.inputView = yourCustomInputView;
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文