UIGestureRecognizer 和 UISplitViewController
好的,设置如下:我正在使用 splitViewController,在我的主视图控制器中,有两个其他视图控制器的视图填充它。在这些视图之一中有两个文本字段,我想让它这样,如果他们单击这些文本字段之外的任何地方,键盘就会消失。前任。如果他们单击详细视图控制器中的任意位置,键盘应该自行消失。这样做的最好方法是什么?
Ok so heres the setup: I'm using a splitViewController and in my master view controller there are two other view controller's views populating it. In one of those views theres two textfields and I want to make it so the keyboard will dismiss if they click anywhere outside those textfields. Ex. if they click anywhere in the detail view controller the keyboard should dismiss itself. Whats the best way of doing this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
将分割视图设置为文本字段的委托,然后使用 textFieldDidBeginEditing 委托方法告诉分割视图在详细信息视图中设置一个变量,使其在 TouchBegan 上向文本字段发送 resignFirstResponder。
set the split view as the textfield's delegate, then use the textFieldDidBeginEditing delegate method telling the split view to set a varible in the detail view that makes it send the textfield a resignFirstResponder on touchesBegan.