首页 > 其他 > 详细

ios之自定义UINavigationBar

时间:2014-02-15 16:31:30      阅读:332      评论:0      收藏:0      [点我收藏+]

ios5 自定义导航条问题

在ios5之前的系统中,可以通过定义导航条类别的方式自定义导航条:

bubuko.com,布布扣
bubuko.com,布布扣
@implementation UINavigationBar (CustomImage)
- (void)drawRect:(CGRect)rect {
// Drawing code
UIImage *image = [[UIImage imageNamed:@"header.png"] retain];
[image drawInRect:CGRectMake(0, 0,self.frame.size.width , self.frame.size.height)];
[image release];
}
@end
bubuko.com,布布扣
bubuko.com,布布扣


但在ios5中,这种方式不起作用了。详见ios 5.0发布说明:

http://developer.apple.com/library/ios/#releasenotes/General/RN-iOSSDK-5_0/_index.html#//apple_ref/doc/uid/TP40010949

在iOS 5中,UINavigationBar, UIToolbar, and UITabBar 的实现方式改变了,因此drawRect:方法不会被调用了。除非在他们的子类中实现。

因此,要在iOS 5.0中继续使用自定义的导航条,这里提供两种方法:

1、使用5.0中新提供的UINavigationBar的方法setBackgroundImage:forBarMetrics:来设置背景。

  但是为了与4.0等系统兼容,在使用该方法前必须先进行判断:(在5.0之前的系统中继续使用原来的方法)

  (需要在每个用到navigationbar的地方都调用该方法,可能改动的地方比较多)

bubuko.com,布布扣
bubuko.com,布布扣
 1 UINavigationBar *navBar = [myNavController navigationBar];
 2 if ([navBar respondsToSelector:@selector(setBackgroundImage:forBarMetrics:)])
 3 {
 4     // set globablly for all UINavBars
 5     [[UINavigationBar appearance] setBackgroundImage:[UIImage imageNamed:@"brnlthr_nav.jpg"] forBarMetrics:UIBarMetricsDefault];
 6   // ...
bubuko.com,布布扣
bubuko.com,布布扣

 

2、使用UINavigationBar的子类的方式来实现:(用这种方式可以不用对每个使用navigationbar的地方都进行修改,属于懒人做法)

bubuko.com,布布扣
bubuko.com,布布扣
 @interface MyNavigationBar : UINavigationBar

@end

@implementation MyNavigationBar

- (void)drawRect:(CGRect)rect {
  [super drawRect:rect];
}
@end

@implementation UINavigationBar (LazyNavigationBar)
+ (Class)class {
return NSClassFromString(@"MyNavigationBar");
}

-(void)drawRect:(CGRect)rect {
UIImage *backImage = [UIImage imageNamed:@"backNav.png"];
 [backImage drawInRect:CGRectMake(0, 0, self.frame.size.width, self.frame.size.height)];
}
@end
bubuko.com,布布扣
bubuko.com,布布扣


3.使用category 范畴   来实现

 

bubuko.com,布布扣
bubuko.com,布布扣
@implementationUINavigationBar(MyCustomNavBar)

-(void)setBackgroudImage:(UIImage*)image
{
CGSize imageSize =[image size];
self.frame =CGRectMake(self.frame.origin.x,self.frame.origin.y,self.frame.size.width, imageSize.height);
UIImageView*backgroundImage =[[UIImageView alloc] initWithImage:image];
backgroundImage.frame =self.bounds;
[self addSubview:backgroundImage];
[backgroundImage release];
}
@end
//The above swizzling will allow you to set any custom background image for the UINavigationBar(iOS5 & iOS4).
bubuko.com,布布扣
bubuko.com,布布扣

 

 

Here‘s a less-ugly solution that works for both iOS4 and 5:

bubuko.com,布布扣
bubuko.com,布布扣
@implementationUINavigationBar(CustomBackground)

-(UIImage*)barBackground
{
return[UIImage imageNamed:@"top-navigation-bar.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
bubuko.com,布布扣
bubuko.com,布布扣

ios之自定义UINavigationBar

原文:http://www.cnblogs.com/yulang314/p/3550499.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!