1

when you receive this message Program received signal SIGABRT while pressing Info button on the application. Then how to figure out what is wrong and exactly where code is wrong.

Thanks for help.

user1120133
  • 3,244
  • 3
  • 48
  • 90
  • Set an exception breakpoint. http://stackoverflow.com/questions/4961770/run-stop-on-objective-c-exception-in-xcode-4 – rob mayoff Jan 21 '12 at 21:19

1 Answers1

1

Set an exception breakpoint,.

See this SO answer for a graphic illustration.

You might set a breakpoint in the UIApplication delegate methods:

- (void)applicationWillResignActive:(UIApplication *)application

or

- (void)applicationWillTerminate:(UIApplication *)application
Community
  • 1
  • 1
zaph
  • 111,848
  • 21
  • 189
  • 228