试图覆盖AppDelegate实现文件中的UINavigationBar

时间:2012-12-17 16:05:07

标签: iphone objective-c ios uinavigationbar

我正在尝试覆盖UINavigationBar并添加自定义图像。我将此添加到我的AppDelegate文件中,然后添加到实现文件中。既不工作,也不确定为什么。

任何帮助都会很棒:)

@implementation UINavigationBar (CustomImage)
- (void)drawRect:(CGRect)rect {
    UIImage *image = [UIImage imageNamed: @"redbar.png"];
    [image drawInRect:CGRectMake(0, 0, self.frame.size.width, self.frame.size.height)];
}
@end

1 个答案:

答案 0 :(得分:1)

对于iOS 5及更高版本,请执行以下操作..

if ([[UINavigationBar class]respondsToSelector:@selector(appearance)]) {
    [[UINavigationBar appearance] setBackgroundImage:[UIImage imageNamed:@"redbar.png"] 
                                       forBarMetrics:UIBarMetricsDefault];
}