func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplicationLaunchOptionsKey: Any]?) -> Bool {
keybordsetting()
Fabric.with([Crashlytics.self])
FIRApp.configure()
firebase_url = DEV_FIRBASE
print("screenWidth app : \(width)")
return true
}
答案 0 :(得分:0)
添加标志:
在Xcode中导航到目标(不是项目)
单击“构建设置”选项卡
确保显示的是“所有”设置,而不是“基本”设置
滚动到(或搜索)“其他Swift标志”
添加两个标志:-Xfrontend and -warn-long-function-bodies=100
,其中100是您希望警告阈值达到的毫秒数
编译您的项目