如何在屏幕顶部添加 UIToolbar?
是否可以在屏幕顶部放置一个 UIToolbar?示例应用程序类似于“日历”,右侧有“+”,左侧有“日历”按钮。
Is it possible to have a UIToolbar on the top of the screen? The example application would be like "Calendar" where it has the "+" on the right, and then the "Calendars" button on the left.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以将
UIToolbar
放置在任何地方。这只是一个 UI 视图。You can put a
UIToolbar
anywhere. It's just a UI view.您通常会在屏幕顶部放置一个
UINavigationBar
。UIToolbars
通常放置在屏幕的底部。您可以在
UIViewController
的loadView
方法中以编程方式添加它,也可以在 XIB 资源文件中以图形方式添加它。At the top of the screen you would typically put a
UINavigationBar
.UIToolbars
are usually placed at the bottom of the screen.You can add this either programatically in the
loadView
method of aUIViewController
or graphically in the XIB resource file.