The image does not appear in the appstore version of the application for the iPhone

I have an image in an application that displays perfectly when debugging a device with Xcode or distributing ADHoc, but when I download an application from the store, the image does not display for iPhone 3G.

I tried to extract the IPA for the application and found that both low resolution images and @ 2x are present.

What could be the reason for this?

+4
source share
1 answer

solved. The image was used as the button background. The problem was not a missing image. It was that the button was placed on the screen. It was set as the subtitle of the TabBarViewController panel. I used the tab height to calculate the center of the button. I replaced this with hard coded values ​​to fix the problem.

Why did this happen only with the iPhone 3G and only with the distribution? I'm really not sure, but I was able to use remote logging in the TestFlight SDK to find out that the button position is off at> 400 pixels.

+4
source

Source: https://habr.com/ru/post/1380973/


All Articles