9 lines
239 B
Objective-C
9 lines
239 B
Objective-C
#import "SPAppDelegate.h"
|
|
#import <Foundation/Foundation.h>
|
|
|
|
int main(int argc, char *argv[]) {
|
|
@autoreleasepool {
|
|
return UIApplicationMain(argc, argv, nil,
|
|
NSStringFromClass(SPAppDelegate.class));
|
|
}
|
|
}
|