inappsettingskit 中的 UIPicker

发布于 2024-11-14 21:07:23 字数 118 浏览 2 评论 0原文

使用 inappsettingskit,我正在寻找一种在单击文本字段单元格(而不是键盘)时显示 uipickerview (具有自定义值)的方法。

有什么办法可以做到吗?

感谢您的帮助 :)

Using inappsettingskit, I'm searching for a way to display an uipickerview (with custom values) when clicking on a textfield cell (instead of a keyboard).

Is there any way to do so ?

Thanks for your help :)

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

清眉祭 2024-11-21 21:07:23

阅读应用程序中的设置,并使用 UITextField inputView 属性显示选择器视图而不是标准键盘。

myTextField.inputView = myPickerView;

来自 inputView 的 Apple 文档.

如果该属性的值为nil,
文本字段显示标准
系统键盘成为第一个时
应答者。将自定义视图分配给
该属性导致该视图成为
而是呈现。

Read the setting in you application and for showing picker view instead of standard keyboard use UITextField inputView property.

myTextField.inputView = myPickerView;

From Apple Documentation for inputView .

If the value in this property is nil,
the text field displays the standard
system keyboard when it becomes first
responder. Assigning a custom view to
this property causes that view to be
presented instead.

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