gpt4 book ai didi

iphone - 图像未在 iOS 3.2 上显示

转载 作者:行者123 更新时间:2023-11-29 11:22:26 25 4
gpt4 key购买 nike

我有一个小型 iPhone 应用程序,它在 iOS 4 上运行良好,但是当我在 iOS 3.2 或更低版本上运行它时,应用程序图像都没有显示。起初,我以为是因为我丢失了一些高分辨率图像,但如果真是这样,那么这些图像仍然会显示在 iOS 3.2 上吗?

所以,我的问题是:为什么我的图片在 iOS4 上可以正常显示,但在 iOS 3.2 及以下版本上却完全不能显示?

编辑:这就是我在 atm 中加载图像的方式(它在 UITableView 中):

UIImage *cellImage = [UIImage imageNamed:imageName];
UIImage *chevronImage = [UIImage imageNamed:@"chevron"];
UIImageView *chevronImageView = [[UIImageView alloc] initWithImage:chevronImage];

[[cell imageView] setImage:cellImage];
[[cell textLabel] setText: [names objectAtIndex:indexPath.row]];
[cell setAccessoryView:chevronImageView];

谢谢

最佳答案

这可能是与您调用的文件扩展名相关的问题:

UIImage *chevronImage = [UIImage imageNamed:@"chevron"];

您可以尝试将其更改为:

UIImage *chevronImage = [UIImage imageNamed:@"chevron.png"];

我怀疑 iOS 4+ 在您不使用图像扩展时“自动”推断出它们。

关于iphone - 图像未在 iOS 3.2 上显示,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6289966/

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