hotfix_ios_demo/hotfix-ios-demo/main.m (7 lines of code) (raw):
//
// main.m
// hotfix-ios-demo
//
// Created by junmo on 2017/10/19.
// Copyright © 2017年 junmo. 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]));
}
}