123456789101112131415161718 |
- //
- // main.m
- // Demo
- //
- // Created by jiajun on 12/22/12.
- // Copyright (c) 2012 SegmentFault.com. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "KCHAppDelegate.h"
- int main(int argc, char *argv[])
- {
- @autoreleasepool {
- return UIApplicationMain(argc, argv, nil, NSStringFromClass([KCHAppDelegate class]));
- }
- }
|