17 lines
342 B
Objective-C
17 lines
342 B
Objective-C
//
|
|
// main.m
|
|
// develop
|
|
//
|
|
// Created by Ntrlab on 23/10/2017.
|
|
// Copyright © 2017 The Chromium Authors. 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]));
|
|
}
|
|
}
|