我嘗試更改爲導航欄的背景。如何更改導航欄背景
Search.h:
#import <UIKit/UIKit.h>
@interface Search : UIViewController
@end
Search.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];
}
我不能改變導航的背景。
謝謝。
在'UINavigationController *'類型的對象上找不到屬性'navBar' –
使用此self.navigationController.navigationBar –
現在沒有錯誤,但背景不變。 –