mirror of https://github.com/python/cpython
17 lines
331 B
Objective-C
17 lines
331 B
Objective-C
//
|
|
// main.m
|
|
// iOSTestbed
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
#import "AppDelegate.h"
|
|
|
|
int main(int argc, char * argv[]) {
|
|
NSString * appDelegateClassName;
|
|
@autoreleasepool {
|
|
appDelegateClassName = NSStringFromClass([AppDelegate class]);
|
|
|
|
return UIApplicationMain(argc, argv, nil, appDelegateClassName);
|
|
}
|
|
}
|