I keep getting the SIGBRT
signal in the simulator but XCode says there are no problems with my code:
int main(int argc, char *argv[])
{
@autoreleasepool {
return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class]));
}
}
What could be the problem?