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, t开发者_开发问答he background image doesn't exist. How can I diagnose?
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.
精彩评论