当 UITextField 是 FirstResponder 时如何防止 UITableView 交互

发布于 2024-10-31 18:43:07 字数 247 浏览 1 评论 0原文

在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

冷心人i 2024-11-07 18:43:07

我想到的第一个想法是添加一个透明的 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文