操作表的标题从视图中消失了吗?
当操作表的按钮数量超过 7 时,标题从视图中消失?如何在当前视图中显示它?
When button numbers of action sheet are more than 7, the title disappear from the view? How can i show it in the current view?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
坦率地说,如果您在操作表中呈现超过 7 个按钮,则需要重新考虑该表的布局。您需要向用户提供一组更有限的选择。屏幕上同时显示 7 个选项将导致用户面临太多选择而陷入瘫痪。
Quite frankly, if you are presenting more than 7 buttons in an action sheet, you need to rethink the layout of that sheet. You need to present the user with a more limited set of choices. Having 7 options onscreen at once will lead to user paralysis by facing them with too many choices.
在本例中,您应该创建一个显示所有选项的 UITableViewController 子类,而不是使用 UIActionSheet。您可以将标题文本放入节标题或
tableHeaderView
中。You should create a
UITableViewController
subclass which shows all the options instead of using a UIActionSheet in this case. You can put the title text into a section header or in thetableHeaderView
.