Parse project with black bands

0

I'm using the Parse.com project in version 7 of Xcode, however, the app has a black stripe at the top and another at the bottom as shown in the image:

I'm using the swift version of the project. Could anyone tell me what this means? I've done some research but found nothing.

    
asked by anonymous 25.09.2015 / 22:43

2 answers

3

I've had this same problem, but on a screen that I created, the cause of it is the resolution of its launch screen. As it is the first screen to be shown in the application, the IOS directs the screen resolution of the device with the same as the launch screen, thus getting these tracks when entering a screen with different resolution.     

02.10.2015 / 16:56
0

Go to the Images.xcassets file, look for the LaunchImage item and make sure that all the images for the devices that will run your app are in this file. Do not put image to iPad if your app does not have iPad version.

If it still does not work, click the root of your project, select General, and look for App Icons and Launch Images. Make sure your LaunchImage is selected in Launch Image Source.

Good luck!

    
29.10.2015 / 20:52