2015-01-20 160 views
-1

下面的代碼是我一直在設置導航欄外觀tintcolor的地方。我將如何添加背景圖片?導航欄外觀和背景圖片

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions 
{ 
    [[UINavigationBar appearance] setBarTintColor: 
          [UIColor colorWithRed:0.158 green:0.457 blue:0.405 alpha:1]]; 

回答

0

您可以使用-setBackgroundImage:forBarMetrics:方法。這是最簡單的方法。 例如:

[[UINavigationBar appearance] setBackgroundImage:[UIImage imageNamed:@"navBarBackground"] forBarMetrics:UIBarMetricsDefault]