main.m 327 B

12345678910111213
  1. #if !defined(__has_feature) || !__has_feature(objc_arc)
  2. #error "This file requires ARC support."
  3. #endif
  4. #import <UIKit/UIKit.h>
  5. #import "SDKDemos/SDKDemoAppDelegate.h"
  6. int main(int argc, char *argv[]) {
  7. @autoreleasepool {
  8. return UIApplicationMain(argc, argv, nil, NSStringFromClass([SDKDemoAppDelegate class]));
  9. }
  10. }