Xcode 10 之后 main 函数的写法

本文最后更新于 2021年4月4日 晚上

有时会遇到重写 Main 函数来使用不同的 AppDelegateUIApplication 子类的需求, 这里就来看在 Xcode 10 之后 Main 函数的写法.

直接上代码:

1
2
3
4
5
6
7
8
9
10
11
12
import UIKit

let argv = UnsafeMutableRawPointer(CommandLine.unsafeArgv)
.bindMemory(to: UnsafeMutablePointer<Int8>?.self,
capacity: Int(CommandLine.argc))

_ = UIApplicationMain(
CommandLine.argc,
argv,
NSStringFromClass(UIApplication.self),
NSStringFromClass(AppDelegate.self)
)

Xcode 10 之后 main 函数的写法
https://blog.rayy.top/2018/10/08/2019-11-xcode10-main/
作者
貘鸣
发布于
2018年10月8日
许可协议