1

Sometimes app is working fine, but sometimes it will get stuck in the launch screen.

I tried many things like changing the provisioning profile, restarting my Mac, quiting Xcode, and quitting the iPhone Simulator.

Xcode version is 7.3.0, macOS 10.11.4

I don't know what to do next. Please help me with this issue.

shim
  • 9,289
  • 12
  • 69
  • 108
Tejaswi iitv
  • 71
  • 1
  • 9

2 Answers2

2

If your app hangs at launch, you should check your AppDelegate's didFinishingLaunching and the initial view controller's viewDidLoad.

guidev
  • 2,695
  • 2
  • 23
  • 44
0

Seems it might be taking some time to appear.

Check the code what you are running in didFinishLaunchingWithOptions method.

Any Server calls making it to take that much time.

Try the way by debugging from AppDelegate to viewDidLoad method of initial viewcontroller.

Santo
  • 1,611
  • 3
  • 17
  • 37
  • No server calls,i waited till it goes.After 5minute it is showing memory warning – Tejaswi iitv Jun 10 '16 at 08:47
  • check this [link1](http://stackoverflow.com/questions/13449224/ios-6-simulator-stuck-on-splash-screen) [link2](http://stackoverflow.com/questions/32837237/app-stuck-in-splash-screen-on-ios-9-with-no-error) – Santo Jun 10 '16 at 08:49