如何使用第一响应程序在具有多个表视图的视图中最多仅保留一个单元格被选中?

发布于 2024-10-24 19:51:41 字数 160 浏览 2 评论 0原文

我有一个滚动视图,其中有几个表视图作为子视图...... 假设我在其中一个子视图中选择了一个单元格。现在,当我从另一个视图中选择一个单元格时,我之前选择的单元格不应突出显示。 我该怎么做?我知道我可以使用第一响应者来执行此操作,但我不确定如何执行此操作。 有人能帮我解决这个问题吗?

谢谢

I have a scrollview which has several table views as sub views...
say that I have selected a cell in one of the sub views. Now when I select a cell from another view, the cell I selected previously should not be highlighted.
How do I do this? I know I can do this using the first responder, but I am not sure how to do it.
Would anyone be able to help me out in this?

Thanks

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

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

发布评论

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

评论(1

嘦怹 2024-10-31 19:51:41

来自苹果界面指南:

当用户选择列表项时始终提供反馈。用户希望在点击其中的可选项目时表格行能够短暂突出显示。点击后,用户期望立即执行操作:出现新视图或行显示复选标记以指示该项目已被选择或启用。

在极少数情况下,当与行项目相关的次要详细信息或控件显示在同一屏幕中时,该行可能会保持突出显示状态。但是,不鼓励这样做,因为很难在不创建令人不舒服的拥挤布局的情况下同时显示选项列表、所选项目以及相关详细信息或控件。

我认为苹果不会批准突出显示一行的应用程序(正是因为这个原因,我有一个应用程序被拒绝)。您应该执行一个操作,然后立即取消突出显示它。在极少数情况下,您可以在显示相关视图时将其突出显示。

但是,如果存储所选的当前单元格,则可以在 tableview 上调用 -deselectRowAtIndexPath:animated: 来取消选择行。

From the apple interface guidlines:

Always provide feedback when users select a list item. Users expect a table row to highlight briefly when they tap a selectable item in it. After tapping, users expect an immediate action to occur: Either a new view appears or the row displays a checkmark to indicate that the item has been selected or enabled.

In rare cases, a row might remain highlighted when secondary details or controls related to the row item are displayed in the same screen. However, this is not encouraged because it is difficult to display simultaneously a list of choices, a selected item, and related details or controls without creating an uncomfortably crowded layout.

I don't think apple will approve an app that leaves a row highlighted (I had an app reject for that very reason). You should perform an action and then immediately unhighlight it. In some rare cases you can leave it highlighted while showing a related view.

However, if you store the current cell you have selected, you can call -deselectRowAtIndexPath:animated: on the tableview to deselect a row.

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