gpt4 book ai didi

iphone - 将导航栏背景更改为图像

转载 作者:行者123 更新时间:2023-12-03 20:52:15 25 4
gpt4 key购买 nike

我在 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+ 的代码,请帮助我。

最佳答案

请尝试这个:

@implementation UINavigationBar (CustomImage)

// Set bar background
- (UIImage *)customBackground {
UIImage *image = [UIImage imageNamed:@"background.png"];
return image;
}

- (void)didMoveToSuperview {
// Applies to iOS5 only
if ([self respondsToSelector:@selector(setBackgroundImage:forBarMetrics:)]) {
[self setBackgroundImage:[self customBackground] forBarMetrics:UIBarMetricsDefault];
}
}

// Set the navigation bar background
- (void)drawRect:(CGRect)rect {
[[self customBackground] drawInRect:CGRectMake(0, 0, self.frame.size.width, self.frame.size.height)];
}

@end

setBackgroundImage:forBarMetrics: 适用于 iOS5

关于iphone - 将导航栏背景更改为图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10922297/

25 4 0