当 UITextField 是 FirstResponder 时如何防止 UITableView 交互
在 UITextField 中输入文本时是否有一种简单的方法来防止用户交互(文本字段位于 tableView 的单元格中)?
我已经尝试过这个:
- (void)textFieldDidBeginEditing:(UITextField *)textField {
self.tableView.userInteractionEnabled = NO;
}
结果键盘也停止显示......
Is there a simple way to prevent user interaction while entering text in a UITextField (the textfield is in a cell of the tableView)?
I've already tried this:
- (void)textFieldDidBeginEditing:(UITextField *)textField {
self.tableView.userInteractionEnabled = NO;
}
with the result that the keyboard also stops showing up...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我想到的第一个想法是添加一个透明的 UIView 覆盖层,它将“屏蔽”单元格周围的所有内容,拦截所有触摸事件。我想它必须是两个覆盖层 - 一个用于单元格上方,一个用于单元格下方。
The first thought that comes to mind is adding a transparent UIView overlay that would "mask" everything surrounding your cell, intercepting all the touch events. I suppose it would have to be two overlays - one for above the cell and one for below.