iPad 应用程序上的“关于”按钮位于哪里?
我的 iPad 应用程序使用 splitView。我应该在哪里添加一个按钮来弹出关于对话框?
谢谢
My iPad app uses a splitView. Where should I stick a button to bring up an about dialog?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这完全取决于您的用户界面以及它的最佳外观。我认为除了 Apple UI 指南(在这些东西方面相当宽松)之外,没有任何关于什么应该放在哪里以及什么东西的既定规则。
但是,给您一个建议:假设您正在为主版执行基本的导航/表格视图,并为详细信息执行常规视图,您有几个选项:
1)沿着主版底部的多个按钮的工具栏
2) 导航控制器的rightBarButton
3) 顶部的工具栏有多个按钮的详细信息
实验并查看您认为最好的。更好的是,看看你的朋友认为最好的是什么。您可能认为直观的内容可能会让刚接触您的应用程序的人感到困惑。
It all really depends on your UI and where best it would look. I don't think there's any established rules on what should go where and stuff, aside from the Apple UI guidelines (which are pretty loose in terms of this stuff).
However, to give you a suggestion: assuming you're doing the basic Nav/Tableview for master and regular view for detail, you've got several options:
1) Toolbar along bottom of master for multiple buttons
2) rightBarButton of the navigation controller
3) Toolbar along the top of detail for multiple buttons
Experiment and see what you feel is best. Even better, see what your friends think is best. What you may think as intuitive can be confusing to someone new to your app.