UIkeyboard 弹出窗口,顶部有 uitextfield(包含图片)
我试图实现这种类型的效果,按下一个按钮,弹出 uikeyboard,并在它的正上方带来一个 uitextfield。请参阅附图。有人能指出我该怎么做吗? 谢谢。
I am trying to achieve this type of effect where a barbutton is pressed and uikeyboard pops up and right above it brings a uitextfield with it. Please see image attached. Can someone point me to the right about how I can do this?
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用
UIToolbar
或UIActionSheet
将文本字段设置为键盘的
inputAccessoryView
。更新:
对于按钮,将上述代码放入按钮的 (IBAction) 中。
创建一个 UIView 并将其作为子视图添加到您的视图中,而不是 masterTextField。
Use
UIToolbar
orUIActionSheet
Setup a textField as an
inputAccessoryView
for the keyboard.update:
For a button, put the above code in the (IBAction) of the button.
And instead of masterTextField, create a UIView and add it as a SubView to your view.