I got my IOS developers today and just did all the Provision Profiles and I just ran my app on my phone for the first time. For some reason one of the backgrounds in my app works on the simulator but doesn’t show up on the iPhone. Can anyone explain this?
Edit:
The Background is a UIImageView set to the index of 0. When the app is launched it starts with the background that works and when a button is pressed it changes to a different UIImage that doessnt work on my phone.
You should double-check your resources. You should note that while the simulator appears to be case-insensitive, the device is case-sensitive! If your image file is called “myAwesomeImage.png” and your code says…
…it may work on the simulator, but it won’t on the device.