我正在尝试覆盖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
答案 0 :(得分:1)
对于iOS 5及更高版本,请执行以下操作..
if ([[UINavigationBar class]respondsToSelector:@selector(appearance)]) {
[[UINavigationBar appearance] setBackgroundImage:[UIImage imageNamed:@"redbar.png"]
forBarMetrics:UIBarMetricsDefault];
}