iphone .png 图像未显示在设备中

发布于 2024-09-16 14:16:46 字数 385 浏览 3 评论 0原文

好的,我在表格单元格中将一些 .png 文件图像设置为 uimage。当我使用 iPhone 模拟器运行它们时,它们显示得很好。当我在我的设备中运行它们时,它们没有显示。问题是什么?

当我将应用程序安装到我的设备上时,我遇到的唯一“错误”是无法调试,这不应该是问题,因为我从未设置过调试。

有人知道为什么吗?

提前致谢!

代码:

- (void)setIcon:(UIImage *)newIcon
{
    [super setIcon:newIcon];
    iconView.image = newIcon;
}

其中 iconview.image 来自 nib。 newIcon从plist、1.png等加载。

ok, i set some .png files image as uimage in my table cell. they show up nicely when i run them using iphone simulator. when i run them in my device, they up not show up. what seems to be the problem?

i only "error" i got is unable to debug when i install my app to my device, which shouldn't be a problem as i never set for debug.

does anyone knows why?

thks in advance!

code:

- (void)setIcon:(UIImage *)newIcon
{
    [super setIcon:newIcon];
    iconView.image = newIcon;
}

where iconview.image is from nib. newIcon is loaded in from plist, 1.png etc.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

只想待在家 2024-09-23 14:16:46

文件名的大写/小写字母用法在源代码或 plist 字符串与应用程序包中的实际文件名之间是否完全一致?区分大小写是 Mac OS 和 iOS 文件系统之间的区别。

Is the uppercase/lowercase letter usage of your file names exactly consistent between the source code or plist strings and the actual file names in your app's bundle? Case awareness is a difference between the Mac OS and iOS file systems.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文