读书人

UINavigationBar往渐变

发布时间: 2013-07-16 22:38:04 作者: rapoo

UINavigationBar去渐变
@implementation UINavigationBar (CustomBackground)

- (UIImage *)barBackground
{
return [UIImage imageNamed:@"login_nav_bg.png"];
}

- (void)didMoveToSuperview
{
//iOS5 only
if ([self respondsToSelector:@selector(setBackgroundImage:forBarMetrics:)])
{
[self setBackgroundImage:[self barBackground] forBarMetrics:UIBarMetricsDefault];
}
}

//this doesn't work on iOS5 but is needed for iOS4 and earlier
- (void)drawRect:(CGRect)rect
{
//draw image
[[self barBackground] drawInRect:rect];
}

@end

读书人网 >移动开发

热点推荐