Advertisement
Guest User

Untitled

a guest
Sep 20th, 2017
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. @interface UINavigationBar (NavigationBarCategory)
  2.  
  3. @end
  4.  
  5.  
  6. /********/
  7.  
  8. #import "NavigationBarCategory.h"
  9.  
  10.  
  11. @implementation UINavigationBar (NavigationBarCategory)
  12.  
  13. - (void)drawRect:(CGRect)rect {
  14. UIImage *img = [UIImage imageNamed: @"background-nav.jpg"];
  15. [img drawInRect:CGRectMake(0, 0, self.frame.size.width, self.frame.size.height)];
  16. }
  17.  
  18. @end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement