mirror of
https://github.com/wu736139669/jingdongkaipule.git
synced 2026-08-05 05:55:19 +00:00
17 lines
330 B
Objective-C
17 lines
330 B
Objective-C
//
|
|
// main.m
|
|
// TestKeplerDemo
|
|
//
|
|
// Created by Lemon on 16/1/20.
|
|
// Copyright © 2016年 jd. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
#import "AppDelegate.h"
|
|
|
|
int main(int argc, char * argv[]) {
|
|
@autoreleasepool {
|
|
return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class]));
|
|
}
|
|
}
|