我们可以为 UIAlertView 中的 UITextField 提供自定义 inputView 吗?
UIAlertView 现在正式支持文本字段。最后!
当然,警报视图的视图层次结构仍然是私有的,但它提供了对其所保存的文本字段的引用。这是读取用户输入的内容所必需的。但是,它还允许更改文本字段的行为,例如选择另一个键盘,甚至提供自定义输入视图。 UITextField 的这些功能都是公开的,但我仍然想知道在警报视图的上下文中是否允许这些功能。
所以我的问题,正如标题已经给出的那样,是:我们可以为 UIAlertView 中的 UITextField 提供自定义 inputView 吗?
任何见解都非常感谢!
UIAlertView now officially supports textfields. Finally!
The view hierarchy of the alertview is still private, of course, yet it provides references to the textfields it holds. This is needed for reading the content the user has typed in. It would allow however to also change the textfields behavior, like choosing another keyboard or even providing a custom inputview. Those features of an UITextField are all public, I'm still wondering whether those are allowed in the context of an alertview though.
So my question, as the title already gave away, is: May we provide a custom inputView for an UITextField within an UIAlertView?
Any insights greatly appreciated!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我只看到用于设置文本输入类型的样式常量以及检索输入文本的方法。遵循格言
除非明确允许,否则一切皆被禁止
,您无法设置自己的 inputView。I see just the style constants to set the type of the text input and the method to retrieve the entered text. Following the maxim
everything is forbidden unless explicitly allowed
, you cannot set your own inputView.