(lldb)

Does anyone know what it means if your app stops running, goes to a script “By Thread” and highlights “21 main” under “Thread 1”, also highlights " return NSApplicationMain(argc, (const char **)argv);" in your mian.m script and puts "(lldb) " in the console log?

That your app has crashed.

Try fixing what went wrong, it’s not always obvious, it can as simple as NSLog (@“My var value is: %@”, anInt); or more annoying, a zombie (a released object). Most of the time, for me it was the first example.

Regards,