Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Download
7639 views
1
#import <UIKit/UIKit.h>
2
#import "MuAppDelegate.h"
3
4
int main(int argc, char *argv[])
5
{
6
@autoreleasepool {
7
@try {
8
return UIApplicationMain(argc, argv, nil, NSStringFromClass([MuAppDelegate class]));
9
}
10
@catch (NSException* exception) {
11
NSLog(@"Uncaught exception %@", exception);
12
NSLog(@"Stack trace: %@", [exception callStackSymbols]);
13
}
14
15
return 0;
16
}
17
}
18
19