Change Navigation bar Background image on each navigation

后端 未结 6 1736
梦如初夏
梦如初夏 2020-12-09 13:38

I am working on iPhone app. I have added Navigation bar Background image

With interface: -

@interface UINavigationBar (backgroundImageWithTitle)

6条回答
  •  醉酒成梦
    2020-12-09 14:14

    On iOS 5 this will not work but the good news is that there is a simple way of doing this

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

    NOTE: This will only work on iOS 5 and above so make sure you check iOS version if you want to be backwards compatible.

提交回复
热议问题