我在 IOS 4+ 上尝试了此代码,它运行良好,但直到我的队友在 IOS 5+ 上对其进行了测试。这是代码
@implementation UINavigationBar (CustomImage)
// Set the navigation bar background
- (void)drawRect:(CGRect)rect {
UIImage *image = [UIImage imageNamed:@"background.png"];
[image drawInRect:CGRectMake(0, 0, self.frame.size.width, self.frame.size.height)];
}
@end
我需要一个适用于 IOS 4+ 和 IOS 5+ 的代码,请帮助我。