Hello,
I'm new in IOS programming and I need your help.
When I start my app (Single View Application) in the ios-simulator I become this error:
Thread 1: signal SIGABRT
terminating with uncaught exception of type NSException
code in main.m file:
#import <UIKit/UIKit.h>
#import "AppDelegate.h"
int main(int argc, char * argv[]) {
@autoreleasepool {
return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class])); Here is the error
}
}
I dont understand this error.
Thank you for your help.