我可以使用以下代码在应用程序委托(delegate) didFinishLaunchingWithOptions 方法中将导航栏的背景设置为自定义图像:
UIImage *navBarImage;
navBarImage = [UIImage imageNamed:@"navbar.png"];
[[UINavigationBar appearance] setBackgroundImage: navBarImage forBarMetrics:UIBarMetricsDefault];
我试图在我的应用程序中添加一个选项,以在切换开关时更改导航栏的背景图像,但它似乎不起作用。是否只能在应用程序启动时设置背景图像?应用程序已经启动后,我该怎么做?
这是我的代码:
- (void) switchChanged:(id)sender {
UISwitch* switchView = sender;
if (switchView.isOn) {
UIImage *navBarImage = [UIImage imageNamed:@"black_nav.png"];
[[UINavigationBar appearance] setBackgroundImage: navBarImage forBarMetrics:UIBarMetricsDefault];
}
else {
UIImage *navBarImage = [UIImage imageNamed:@"white_nav.png"];
[[UINavigationBar appearance] setBackgroundImage: navBarImage forBarMetrics:UIBarMetricsDefault];
}
}
最佳答案
使用 setBackgroundImage:forBarMetrics:
方法:
[navbar setBackgroundImage:[UIImage imageNamed:@"navbar"]
forBarMetrics:UIBarMetricsDefault];
关于iphone - 在 ViewController 中设置 UINavigationBar 背景图片,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/16179253/