APP CAN'T LAUNCH IN XCODE
Posted
by
user2977180
on Stack Overflow
See other posts from Stack Overflow
or by user2977180
Published on 2013-11-10T21:50:28Z
Indexed on
2013/11/10
21:52 UTC
Read the original article
Hit count: 223
I'm beginning to code in xCode 5 and I'm doing a really simple app. I just began and, when I try to test my game with iOS Simulator, the main page opens, but when I click on the button to launch the game, I'm redirected to xCode and this appears:
#import "AppDelegate.h"
#import "AppDelegate.h"
int main(int argc, char * argv[])
{
@autoreleasepool {
return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class]));
}
}
and just next to it, this is written:
Thread 1 : Signal SIGABRT
I searched on internet and I just can't seem to find an answer.
Could someone help me please???
© Stack Overflow or respective owner