我已经开始使用Xcode进行iOS开发了一段时间,而我刚开始使用Firebase for iOS。在项目和所有内容中设置好我的广告连播。但是,我到处都在寻找解决该问题的方法,但没有成功。当我尝试导入“ Firebase数据库”时,不断收到此烦人的错误。为什么我无法通过已安装的Pod链接到我的项目。
PodFile
# Uncomment the next line to define a global platform for your project
platform :ios, '9.0'
target 'Be Happy Live Positive' do
pod 'Firebase/Core'
pod 'Firebase/Database'
# Comment the next line if you're not using Swift and don't want to use dynamic frameworks
use_frameworks!
# Pods for Be Happy Live Positive
target 'Be Happy Live PositiveTests' do
pod 'Firebase/Core'
pod 'Firebase/Database'
inherit! :search_paths
# Pods for testing
end
target 'Be Happy Live PositiveUITests' do
pod 'Firebase/Core'
pod 'Firebase/Database'
inherit! :search_paths
# Pods for testing
end
end
我该如何解决?
答案 0 :(得分:0)
也许您试图导入文件,但文件偶然丢失,您可以做一些事情。您可以从cocoapods清除项目并重新安装cocoapod(这一次帮助了我,我遇到了文件丢失的相同问题),您可以通过
在终端上运行此代码
[sudo] gem install cocoapods-deintegrate
然后
cd your file
然后运行pod deintegrate
,一切就绪!并重新安装
----另一种解决方案---
尝试这些
1-将所有.frameworks添加到项目构建阶段->使用库链接二进制文件
2-选择每个框架并进行构建。您可以通过选择运行箭头旁边的项目名称来完成此操作。
3-清理项目并重新启动计算机。
清洁:
SHIFT + CMD + K
重建:
CMD + B
希望有帮助