Background image for navigation view

前端 未结 8 1871
小鲜肉
小鲜肉 2020-12-07 17:17

I am having problems with properly displaying background image of navigation view. Here is the pic:

8条回答
  •  广开言路
    2020-12-07 17:34

    I do exactly this in my app. Within AppDelegate I have this code:

    @implementation UINavigationBar (CustomImage)
    - (void)drawRect:(CGRect)rect
    {
      UIImage *image = [UIImage imageNamed: @"custom_nav_bar.png"];
      [image drawInRect:CGRectMake(0, 0, self.frame.size.width, self.frame.size.height)];
    }
    @end
    

提交回复
热议问题