ataurrehman
ataurrehman

Reputation: 129

ios application is not launching after updating xcode from 4.3 to 5.0.2

I have updated xcode from version 4.3 to 5.0.2. Before updating I was able to debug application on device running ios 5.1. Now when I run application using device, It only display splash screen and didFinishLaunchingWithOptions method does not call so it gets stuck on splash screen.

Note: when I unplug cable and then launch manually then it runs perfectly as it should.

Is there any problem with my configuration?

Upvotes: 0

Views: 247

Answers (1)

user3057005
user3057005

Reputation:

Try the following:

  1. Change your app Debugger at edit scheme > debugger to GDB (Cmd ⌘ + Option ⌥ + R to bring up the panel).
  2. Reset your simulator or delete app from device.
  3. Run new fresh version of your app.

This works for me, hope it works for you also.

Upvotes: 1

Related Questions