UINavigationController(drawRect :)

时间:2010-04-01 03:44:59

标签: iphone objective-c uinavigationcontroller uinavigationbar

我使用TabBarController创建了一个应用程序,4个TabBarItems,每个TabBarItem都有自己的NavigationController文件(在IB中创建的所有内容)。

我正在使用drawRect函数来设计我的navigationBar:



@implementation UINavigationBar (customImage)

-(void)drawRect:(CGRect)rect {

  UIImage *image = [UIImage imageNamed:@"MyImage.png"];
  [image drawInRect:CGRectMake(0,0, self.frame.size.width,self.frame.size.height)];

}

@end

问题是我的应用程序内的每个ViewController的NavigationBar都会发生变化,我想要的只是为一个TabBarItem绘制NavigationBar并使用默认的navigationBar用于其他控制器。
怎么做?

谢谢,

2 个答案:

答案 0 :(得分:0)

在这种情况下,使用类别可能不是最佳选择(如果使用类别覆盖drawRect:,则所有UINavigationController都会受到影响。你最好继承UINavigationController,并且只在你想要的选项卡中使用自定义子类。

编辑:对UINavigationController进行子类化非常简单:

(在.h文件中)

@interface MyCustomNavigationController : UINavigationController {
}
@end

(在.m文件中)

@implementation MyCustomNavigationController

-(void)drawRect:(CGRect)rect {
    //custom drawing here
}
@end

然后,在适当的代码中使用MyCustomNavigationController代替UINavigationController。类别(您在示例中使用的类别)适用于向现有类添加便捷方法,但在替换已存在的方法时可能会很危险(因为您的自定义方法将替换所有用途的原始方法)。

答案 1 :(得分:0)

好的,

他带我很长时间,但我找到了解决方案。通过使用调配方法,我可以做任何我想做的事情。 请查看此link以获取有关如何实施它的更多信息。