将 UIImageView 全局添加到 UINavigationBar 而不是标题
Posted
技术标签:
【中文标题】将 UIImageView 全局添加到 UINavigationBar 而不是标题【英文标题】:Globally add UIImageView to UINavigationBar instead of title 【发布时间】:2016-03-11 11:19:49 【问题描述】:我想在我的应用程序的所有屏幕上全局使用一个徽标作为 UINavigationBar 的标题。如何访问 AppDelegate 中的导航栏?
【问题讨论】:
【参考方案1】:如果您想影响整个应用程序,您应该在 AppDelegate 中使用外观代理。应该这样做:
let navBar = UINavigationBar.appearance()
navBar.setBackgroundImage(UIImage(named: "yourImageName"), forBarMetrics: .Default)
【讨论】:
【参考方案2】:这是我用过的
在 App-delegate 的 didFinishLaunchingWithOptions 方法中添加以下代码
UIImageView *imgView = [[UIImageView alloc]initWithImage:[UIImage imageNamed:@"image_name_here"]];
[imgView setFrame:CGRectMake([UIScreen mainScreen].bounds.size.width/2,2,70,14)];
[imgView setCenter:CGPointMake(self.view.center.x,20)];
[self.navigationController.navigationBar addSubview:imgView];
或替代方式是
UIImage *image = [UIImage imageNamed:@"image_name_here"];
self.navigationItem.titleView = [[UIImageView alloc] initWithImage:image];
【讨论】:
【参考方案3】:这是不可能的。 titleView
始终是 UIViewController
的本地地址。
但是,您可以:
创建UIViewController
的子类,将self.navigationItem.titleView
设置为该图像视图,然后从该类继承所有视图控制器。
创建UINavigationController
的子类,为其提供一个自定义导航栏,该导航栏将始终在其中显示徽标。那么你将不得不使用这个定制的导航控制器而不是UINavigationController
。
设置为导航栏背景图片。您实际上可以在全局范围内设置它,但有时它不是一个选项(特别是如果您想保持默认导航栏外观)。
当然,如果您使用的是storyboads/xib,您可以将带有徽标的UIImageView
放在各处。
【讨论】:
以上是关于将 UIImageView 全局添加到 UINavigationBar 而不是标题的主要内容,如果未能解决你的问题,请参考以下文章
将 UIImageView 添加到 UITableViewCell?
将 UITapRecognizerController 添加到 UIImageView