为什么我的图像没有加载到设备上,而是加载到模拟器中?
我有一个 ImageView,它有我在 IB 中设置的背景图像。在模拟器中看起来很好。当我在设备上运行该应用程序时,背景图像不存在。我该如何诊断?
I have an ImageView that has a background image that I set in IB. It appears fine in the simulator. When I run the app on my device, the background image doesn't exist. How can I diagnose?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
通常这是因为文件系统不区分大小写。在模拟器上,文件系统不区分大小写。因此,它会找到您引用的文件,即使它们具有混合案例。但是,设备文件系统将无法找到该文件。
Usually this is because of case (in)sensitivity in the filesystem. On the simulator, the filesystem is case insensitive. Therefore, it will find files that you refer to even if they HaVe ThEiR CasE MixEd uP. The device filesystem will fail to find the file, however.