AOS_iOS_NRE_Sample/NexacroN_V24/iOS/HelloNexacroIos/HelloNexacroIos/AppDelegate.m

32 lines
786 B
Objective-C

//
// AppDelegate.m
// HelloNexacroIos
//
// Created by JaeHwan Kim on 2023/07/11.
//
#import "AppDelegate.h"
#import "ViewController.h"
@interface AppDelegate ()
@end
@implementation AppDelegate
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
self.viewController = [[ViewController alloc] init];
// server 및 update 모드 구동 방법
self.viewController.projectUrl = @"http:://.../_ios_/";
self.viewController.bootstrapUrl = @"http://.../_ios_/start_ios.json";
// local 모드 구동 방법
// self.viewController.bootstrapUrl = @"file:///ios_asset/archive/start_ios.json";
return [super application:application didFinishLaunchingWithOptions:launchOptions];
}
@end