我正在尝试在Xcode中创建一个新的应用程序,我在后台使用Firebase。在我制作的其他应用程序中,我还没有使用过CocoaPods,但是为了在这个应用程序中使用Firebase,我需要通过Podfile安装它。我按照Firebase的指示进行操作,而且一切都是最新的。当我创建项目时,一切都很好,但是在创建工作区并在Xcode中启动后,我得到一个警告 - 在iOS上折旧-undefined dynamic_lookup。有谁知道如何解决此警告?我的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
干杯