披露“i” iPhone 应用程序的按钮或 V 形?
我有一个 UITableView,其中每行都有两个可以执行的操作。可以向用户显示项目详细信息屏幕(编辑名称并查看摘要信息),或者他们可以“打开”项目以正确交互和使用它。目前,第一个操作是通过带有标签“i”的圆角矩形按钮实现的,第二个操作是通过选择该行(即按该行上的任何其他位置)来启动。
我知道可以放在行上的 Apple UI 按钮,但我不确定使用哪个。蓝色的“i”按钮是否看起来是唯一的交互,因此用户不会选择该行? V 形(箭头)看起来会“深入”而不仅仅是显示摘要信息吗?
这是一个风格问题,而不是一个操作方法问题。希望这仍然适用于这里,
I have a UITableView with rows that each have two actions that can be performed. The user can be shown the item details screen (edit the name and see summary info) or they can 'open' the item to properly interact and play with it. At the moment the first action is achieved via a rounded-rect button with a label "i" in it, and the second action is started by selecting the row (i.e. pressing anywhere else on that row).
I know about the Apple UI buttons that can be put on the rows but I'm not sure which to use. Would the blue "i" button look like that was the only interaction and therefore users would not select the row? Would the chevron (arrow) look like it was going to "go deeper in" rather than just show summary info?
This is a style question rather than a how-to. Hopefully that is still appropriate here,
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
用户知道可以选择表视图行(除了其中的控件之外)。
您绝对应该继续使用整行点击来“打开”,特别是如果这是用户将更频繁执行的操作(目标越大越好)。
您可以切换到在项目详细信息屏幕中使用标准 V 形,但“i”按钮或自定义按钮也完全可以接受(并且您可以将自定义按钮设置为单元格的附件视图,因此它位于完全相同的位置)。
如果您的表具有“编辑”模式,您可能还需要考虑这些操作如何/是否发生变化。
Users know that table view rows can be selected (in addition to controls within them).
You definitely should continue to use the whole row tap for the "open" especially if that's the operation that the user will perform more frequently (bigger target is better).
You could switch to using the standard chevron for the item details screen, but the "i" button or a custom button is perfectly acceptable as well (and you could set your custom button as the cell's accessory view, so it's in the exact same place).
If your table has an "edit" mode, you may also need to consider how/if these actions change.