如何在此警告中解决?

时间:2017-12-01 10:08:27

标签: ios swift

实例方法'application(_:didFinishLaunchingWithOptions :)'花了225ms进行类型检查(限制:50ms)

enter image description here

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
    }

1 个答案:

答案 0 :(得分:0)

添加标志:

  1. 在Xcode中导航到目标(不是项目)

  2. 单击“构建设置”选项卡

  3. 确保显示的是“所有”设置,而不是“基本”设置

  4. 滚动到(或搜索)“其他Swift标志”

  5. 添加两个标志:-Xfrontend and -warn-long-function-bodies=100,其中100是您希望警告阈值达到的毫秒数

  6. 编译您的项目