iOS 上已弃用的 -undefined dynamic_lookup - Xcode

coo*_*tts 5 xcode cocoapods firebase swift

我正在尝试在 Xcode 中创建一个新应用程序,其中我使用 Firebase 作为后端。在我制作的其他应用程序中,我还没有使用 CocoaPods,但是为了在这个应用程序中使用 Firebase,我需要通过 Podfile 安装它。我遵循了 Firebase 的指示,而且一切都是最新的。当我创建项目时,一切都很好,但是在创建工作区并在 Xcode 中启动它之后,我收到一条警告,提示 -undefined dynamic_lookup 在 iOS 上已折旧。有谁知道如何解决这个警告?我的 podfile 看起来像这样:

# Uncomment this line to define a global platform for your project
platform :ios, '8.0'
# Uncomment this line if you're using Swift
use_frameworks!

target 'BodyComp' do
pod 'Firebase', '>= 2.5.1'
end

target 'BodyCompTests' do

end

target 'BodyCompUITests' do

end
Run Code Online (Sandbox Code Playgroud)

干杯