gpt4 book ai didi

iphone - 适用于 iOS < 5.0 的 UINavigationBar 上的自定义图像

转载 作者:塔克拉玛干 更新时间:2023-11-02 07:50:48 26 4
gpt4 key购买 nike

我正在使用“防御性”代码将自定义图像设置为 UINavigationBar 栏 - 它在 ios5 或更高版本的设备上运行良好。

经过一些回答后,我正在使用组合答案编辑代码(见下文)

这是正确且优雅的方法吗?

if ([[UINavigationBar class] respondsToSelector:@selector(appearance)]) {
UIImage *backgroundImage = [UIImage imageNamed:@"tableTitleView.png"];
[self.navigationController.navigationBar setBackgroundImage:backgroundImage forBarMetrics:UIBarMetricsDefault];
}
else
{

NSString *barBgPath = [[NSBundle mainBundle] pathForResource:@"tableTitleView" ofType:@"png"];
[self.navigationController.navigationBar.layer setContents:(id)[UIImage imageWithContentsOfFile: barBgPath].CGImage];
}

最佳答案

float version = [[[UIDevice currentDevice] systemVersion] floatValue];
NSLog(@"%f",version);
if (version >= 5.0) {
UIImage *backgroundImage = [UIImage imageNamed:@"Myimage.png"];
[self.navigationController.navigationBar setBackgroundImage:backgroundImage forBarMetrics:UIBarMetricsDefault];
}
else
{

NSString *barBgPath = [[NSBundle mainBundle] pathForResource:@"Myimage" ofType:@"png"];
[self.navigationController.navigationBar.layer setContents:(id)[UIImage imageWithContentsOfFile: barBgPath].CGImage];
}

也许它能帮到你。它对我有用。

关于iphone - 适用于 iOS < 5.0 的 UINavigationBar 上的自定义图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10582527/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com