18 lines
312 B
Objective-C
18 lines
312 B
Objective-C
//
|
|
// AppDelegate.m
|
|
// MNN
|
|
//
|
|
// Created by MNN on 2019/02/03.
|
|
// Copyright © 2018, Alibaba Group Holding Limited
|
|
//
|
|
|
|
#import "AppDelegate.h"
|
|
|
|
@implementation AppDelegate
|
|
|
|
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
|
|
return YES;
|
|
}
|
|
|
|
@end
|