Skip to content

Instantly share code, notes, and snippets.

@ikhsanalatsary
Last active August 26, 2018 09:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ikhsanalatsary/866a71cf41e0779a61a7a9c67c7c7a39 to your computer and use it in GitHub Desktop.
Save ikhsanalatsary/866a71cf41e0779a61a7a9c67c7c7a39 to your computer and use it in GitHub Desktop.
File main untuk React Native
//
// main.swift
// ReactNativeSwift
//
// Created by Gabriel Lai on 25/8/18.
// Copyright © 2018 Facebook. All rights reserved.
//
import UIKit
let argc = CommandLine.argc
let argv = UnsafeMutableRawPointer(CommandLine.unsafeArgv).bindMemory(to: UnsafeMutablePointer<Int8>.self, capacity: Int(CommandLine.argc))
UIApplicationMain(argc, argv, nil, NSStringFromClass(AppDelegate.self))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment