Been having issues running on my device (both on XCode 5 and XCode6) and both iOS7 and iOS8. I received the following error:
*argv char * "/var/mobile/Containers/Bundle/Application/9943DB7F-C186-49D6-913A-ED95EDC8CBA0/idcdoor.app/idcdoor" =\]{
't80x00183bdc
The interesting thing is when I "step-over" or click the play button, it forwards on into the Application on the device with no issues. Also, if I stop the Application, and re-open, it runs fine. Any help or insight on what I can try would be appreciated.
EDIT Here is the stack:
Queue: com.apple.main-thread(serial)
0_cxa_throw
UIApplicationMain
Main
Here is where is where the exception is thrown:
int main(int argc, char * argv[])
{
@autoreleasepool {
return UIApplicationMain(argc, argv, nil, NSStringFromClass([idcAppDelegate class]));
}
}