I am very frustrated on why this happen. I a nooby and have no coding experience. I was experimenting following tutorials on how to do a simple view pased navigational app.
After I though I learned how, I closed Xcode and deleted all the files to start a new one. Every time I press Run it crashed on me and tells me this is the problem
x#import <UIKit/UIKit.h>
#import "AppDelegate.h"
int main(int argc, char *argv[])
{
@autoreleasepool {
return UIApplicationMain(argc, argv, nil, NSStringFromClass(AppDelegate));
}
}
More specifically it shows this
I deleted xcode and re-installed it and that didn't fix the problem.
Everything was working fine before... What happened?
Please help in simple language....