我尝试更改导航栏的背景。
搜索.h:
#import <UIKit/UIKit.h>
@interface Search : UIViewController
@end
搜索.m:
#import "Search.h"
@implementation Search
- (void)viewDidLoad
{
[super viewDidLoad];
// Do any additional setup after loading the view, typically from a nib.
UIImage *image = [UIImage imageNamed:@"navigation_header.png"];
[self.navigationController.navigationBar setBackgroundImage:image forBarMetrics:UIBarMetricsDefault];
}
我无法更改导航背景。
谢谢。