gpt4 book ai didi

ios - 如何将 imageNamed 转换为 imageWithContentsOfFile?

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

我尝试将 imageNamed: 转换为 imageWithContentsOfFile: 但每次都失败了。我看不到细胞上的图片。

UIImage *image = [UIImage imageNamed:[cellCountry objectForKey:@"Country_Flag"]];
cell.imageView.image = image;

[cellCountry objectForKey:@"Country_Flag"] 持有 flag1@2x.png

图片文件路径为/Resources/Images

这是我的尝试。

UIImage *image = [UIImage imageWithContentsOfFile:[[NSBundle mainBundle] pathForResource:[cellCountry objectForKey:@"Country_Flag"] ofType:@"png"]];
cell.imageView.image = image;

如何转换?我在等你的帮助...

最佳答案

您即将尝试使用 imageWithContentsOfFile。由于 [cellCountry objectForKey:@"Country_Flag"] 中的值已经具有文件扩展名,因此在获取其路径时不能再指定扩展名。

尝试:

UIImage *image = [UIImage imageWithContentsOfFile:[[NSBundle mainBundle] pathForResource:[cellCountry objectForKey:@"Country_Flag"] ofType:nil]];

关于ios - 如何将 imageNamed 转换为 imageWithContentsOfFile?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22303474/

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