forked from shaojiankui/JavaScriptCore-Demo
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.m
More file actions
16 lines (14 loc) · 349 Bytes
/
main.m
File metadata and controls
16 lines (14 loc) · 349 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//
// main.m
// JavaScriptCore-Demo
//
// Created by Jakey on 14/12/26.
// Copyright (c) 2014年 www.skyfox.org. 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]));
}
}