更改表排序列的 iOS 人机界面指南
第一篇文章。我仍在阅读 iOS 人机界面指南 并且还没有遇到过这种情况。在表中显示多列时,向用户表明他们可以更改用于排序的列的适当指示符是什么?
First post. I'm still reading the iOS Human Interface Guidelines and haven't come across this scenario, yet. When displaying multiple columns in a table, what is the appropriate indicator to the user that they can change the column used for sorting?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
嗯,
UITableView
是一个单列表。因此,您通常无法更改排序。我建议阅读 表视图编程指南。它一开始就说:表格视图只有一列,并且只允许垂直滚动。它由部分中的行组成。 [...]
Well, the
UITableView
is a one-column table. So, you can usually not change the sorting. I'd recommend reading the Table View Programming Guide. It says right at the beginning:A table view has only one column and allows vertical scrolling only. It consists of rows in sections. [...]
我也有同样的挑战。我显示了一个客户列表,每个客户都有一个唯一的编号和一个描述性名称。我在工具栏的中间添加了一个分段控件,允许用户按名称或数字排序。
I have the same challenge. I'm showing a single list of customers, each having a unique number and a descriptive name. I've added a segmented control to the middle of my toolbar that allows the user to sort by name or number.