Changing the UINavigationBar background image

后端 未结 7 477
时光取名叫无心
时光取名叫无心 2020-12-01 08:29

I\'ve been trying to change the background image of the UINavigationBar of my application. I tried several ways. First I added to my AppDelegate class the following code:

7条回答
  •  孤城傲影
    2020-12-01 08:47

    Another way to set an image in navigation bar is,

    UIImage* logo = [ UIImage imageNamed:@"Logo.png" ];
    UIImageView* logoView = [[[UIImageView alloc] initWithImage:logo] autorelease];
    self.navigationItem.titleView = logoView;
    

    This will not change whole navigation bar background. But adds a background image centered on the navigation bar, which is sometime more intended (what I was looking for).

提交回复
热议问题