/ Published in: Objective C
@drag the UINavigationBar to you Xib @and paste the code to your App Delegate.h
Expand |
Embed | Plain Text
@implementation UINavigationBar(Background) -(void)drawRect:(CGRect)rect{ UIImage *navBgImage = [UIImage imageNamed:@"nav_bg.jpg"]; [navBgImage drawInRect:CGRectMake(0, 0, self.frame.size.width, self.frame.size.height)]; } @end
You need to login to post a comment.
