main.m 340 B

123456789101112131415161718
  1. //
  2. // main.m
  3. // Demo
  4. //
  5. // Created by jiajun on 12/22/12.
  6. // Copyright (c) 2012 SegmentFault.com. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "KCHAppDelegate.h"
  10. int main(int argc, char *argv[])
  11. {
  12. @autoreleasepool {
  13. return UIApplicationMain(argc, argv, nil, NSStringFromClass([KCHAppDelegate class]));
  14. }
  15. }