NavigationController背景图片问题

Nim*_*hai 3 iphone xcode

我已经在线检查了很多解决方案,但我的NavigationController背景图像仍然存在问题.

这是我的代码:

[self.navigationController.navigationBar setBackgroundImage:[UIImage imageNamed:@"header_bg"] forBarMetrics:UIBarMetricsDefault];
Run Code Online (Sandbox Code Playgroud)

问题是我的酒吧改变了它的外观(主要是颜色),但它看起来仍然不像我的形象.

有没有更好的方法来解决这个问题?

Vij*_*y M 5

试试这个....

UIImageView *imageView = [[UIImageView alloc] initWithImage: [UIImage imageNamed: @"NavBar_Img.png"]];
self.navigationItem.titleView = imageView;
[imageView release];
Run Code Online (Sandbox Code Playgroud)