自定义 UITableCellView 用户交互

发布于 2024-10-31 19:34:01 字数 134 浏览 3 评论 0原文

我为我的应用程序创建了一个自定义 UITableCellView。每个单元格有两个按钮。我面临的问题是单元格本身是可选择的,这会导致用户困惑和设计不佳。如何禁用单元格的交互,但保持单元格中 UIButtons 的交互启用?

谢谢! 萨蒂扬

I created a Custom UITableCellView for my application. Each cell has two buttons. The problem I am facing is that the cell itself is selectable which leads to a confused user and poor design. How do I disable the interaction for the cell but keep the interaction enabled for the UIButtons in the cell?

Thanks!
Satyam

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

酸甜透明夹心 2024-11-07 19:34:01

您可以设置 cell.selectionStyle = UITableViewCellSelectionStyleNone; 并确保保持 didSelectRowAtIndexPath 未实现。这意味着您的单元格将无法交互,但您仍然可以从按钮获取消息。

除此之外,我当然不知道您想要实现什么,但请记住,您可以使用 UITableViewCellAccessoryDe​​tailDisclosureButton 作为附件视图,这是与单元格本身不同的“按钮”。更多信息这里

You can set the cell.selectionStyle = UITableViewCellSelectionStyleNone; and be sure to keep your didSelectRowAtIndexPath unimplemented. That means that your cells will not be interactive, but you can still get messages from your buttons.

Apart from that, of course I don't know what you're trying to achieve, but remember that you can use a UITableViewCellAccessoryDetailDisclosureButton as an accessory view, which is a different "button" from the cell itself. More info here.

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