是否可以使用 UIKit 小部件作为“标题”?
是否可以使用 UINavigationBar 让它在整个应用程序中显示标题?
就像应用程序的某种品牌(让它显示徽标)。
虽然我已经在使用 UINavigationBar 来推送和弹出视图控制器。
或者有其他更适合这个的小部件吗?
我想要使用它的方式最好在这张图片中描述:
Is it possible to use UINavigationBar
to have it displaying a heading throughout the app?
Like some kind of branding of the app (having it show a logo).
Though I'm already using UINavigationBar
to to push and pop view controllers.
Or is there someother better suited widget for this?
The way I want to use it is best described in this picture:
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
从 UI 质量来看,在导航标题上方放置任何内容并不是一个好主意。避免这种情况。
正如所回答的,您可以使用任何类型的 UI 小部件作为导航栏中的标题。
实现此目的的好方法是设置 UINavigationController 的 titleView 属性。
(默认是自定义title属性,内部会改为UILabel)
From UI quality this is not a good idea to have anything above the navigation header. Avoid this.
As it was answered, you can use any kind of UI widget as title in navigation bar.
The good way to do this is by setting the titleView property of the UINavigationController.
(Default is is customize the title property, that will be changed to a UILabel internally)