0

我正在尝试覆盖 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
4

1 回答 1

1

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

if ([[UINavigationBar class]respondsToSelector:@selector(appearance)]) {
    [[UINavigationBar appearance] setBackgroundImage:[UIImage imageNamed:@"redbar.png"] 
                                       forBarMetrics:UIBarMetricsDefault];
}
于 2012-12-17T16:11:57.167 回答