我是编程新手,如果我的问题看起来很傻,我很抱歉。我正在尝试使用Firebase构建iOS应用。
更新到Xcode 9.3后,会出现很多警告,如下图所示:
我认为这来自Firebase pods,也许这个pod还没有被Firebase更新。我对吗?
所以我要做什么?我是否必须手动修复警告,或者我只需要等待Firebase的更新?如果我仍然运行这个程序并发出很多警告,程序是否会正常运行?
这是我使用的吊舱
pod 'SwiftyJSON'
pod 'Firebase/Core'
pod 'Firebase/Firestore'
pod 'Firebase/Storage'
pod 'Firebase/Auth'
pod 'SVProgressHUD', :git => 'https://github.com/SVProgressHUD/SVProgressHUD.git'
pod 'GoogleSignIn'
答案 0 :(得分:4)
警告通常只是:警告。很可能代码运行得很好,你可以等待开发人员更新他们的代码。
或者,如果您不喜欢看到它们,可以在您的podfile中禁止播放,如下所示:
platform :ios
# ignore all warnings from all pods
inhibit_all_warnings!
# ignore warnings from a specific pod
pod 'FBSDKCoreKit', :inhibit_warnings => true
您必须运行pod install
才能更改项目设置。
这将禁止您引入的窗格中的警告,并为开发人员提供修复问题的时间。