I checked your project. The problem is simple, there is no main.m file in your project. I think you accidentally deleted this.
Add a new .m file to the project, name it main
And add the following code to it:
#import <UIKit/UIKit.h> #import "AppDelegate.h" int main(int argc, char * argv[]) { @autoreleasepool { return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class])); } }
There is also no info.plist in your project, so you need to add a new one.
Midhun mp
source share