如何将 TextField 放入 AlertView 中?
可能的重复:
iPhone 上 UIAlertView 中的 UITextField - 如何使其响应?
UIAlertView 中的 UITextField 替代方案?
我想在向用户显示警报时将 TextField 放入 AlertView 中。
Possible Duplicate:
UITextField in UIAlertView on iPhone - how to make it responsive?
UITextField in UIAlertView alternative?
i want to put TextField in AlertView when the alert is displayed to the users.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(7)
从 iOS5 开始,您可以使用 UIAlertViewStyle 将不同的 Textinput 添加到 UIAlertview
示例链接
Since iOS5 you can use UIAlertViewStyle to add the different Textinput into the UIAlertview
Example Link
来自 iPhone 上 UIAlertView 中的 UITextField - 如何使其响应?
from UITextField in UIAlertView on iPhone - how to make it responsive?
只需将其作为
subView
添加到具有您想要的帧大小的UIAlertView
对象即可!Just add it as a
subView
to theUIAlertView
object with the frame size that you desire !我想出了这个,有点长,但我设置了它然后忘记了,它有效......
I came up with this, its a little long, but I set it and forgot and it works...
创建一个继承自 UIAlertview 的自定义类并向其添加一个文本字段元素。
然后写这个方法:
这可能会有所帮助。
现在在其他类中创建此类的对象并测试它。
Create a custom class which inherits from UIAlertview and add a textfield element to it.
Then write this method :
This might help.
Now create an object of this class in some other class and test it.