Souljacker
Souljacker

Reputation: 774

Xcode 6.1: iPhone 5s simulator returns blank screen

My app runs normally on the iPhone 4s and iPhone 5 simulators, but anything above that such as the iPhone 5s, iPhone 6 and iPhone 6 plus simulators all return a blank white screen.

It's strange because it isn't coherent. I thought at first it was a problem with iOS 8 compatibility, but it isn't. It runs perfectly fine on the iOS 8 run iPhone 5 and iPhone 4s simulators.

So I checked my storyboard, and looked at the initial view controller. The initial view controller resembles the blank screen. It seems as though, the view controller is not loading in the storyboard.

I've also tried removing/adding new simulators but that also doesn't seem to work.

Has anyone else experienced this problem? Is it coherent with the latest simulators? Or is it a problem with storyboarding?

UPDATE:

Following @Jeev's suggestion, I added a launch image. It still didn't work, but I looked in the console and caught this message:

Xcode[49653]: : failed to acquire service transport reservation: Error Domain=DYAMDErrorDomain Code=-402653150 "The service is invalid."

Upvotes: 2

Views: 906

Answers (1)

Souljacker
Souljacker

Reputation: 774

I solved it. The problem was that the app was stuck in a loading phase. I was loading data into a UICollectionView, and it went into an infinite loop. It kept on adding data and didn't stop. However it's strange that it's only coherent with the iPhone 6 and 6+ simulators. It loads everything quickly in the older simulators.

Upvotes: 1

Related Questions