我在Swift中有一个项目,我使用了一些库。当我在模拟器或物理设备上运行时,它运行得很好。但是当我尝试存档项目并将其发送到存储时,我收到以下错误消息:
ld: library not found for -lFirebase
问题是当我使用XLForm
库时,这是我对Podfile
所做的最后一次修改。
自从我开始使用CocoaPods以来,我一直在使用.xcworkspace
,而且我以前从未遇到过任何问题。
My 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!
pod 'Firebase', '= 2.5.0'
pod 'Google/CloudMessaging'
pod 'Google'
pod 'Google/Analytics'
pod 'XLForm', '~> 3.0'
target 'Dimmi' do
end
target 'DimmiTests' do
end
target 'DimmiUITests' do
end
XLForm库不依赖于任何其他库或框架。另外,我尝试手动安装它,但没有成功。
你需要创建一个桥接头文件,并通过它导入Objective-C框架。
创建一个新的头文件,并以以下模式命名:
ProjectName-Bridging-Header.h
然后添加你的框架头到它
#import Framework.h
然后将桥接头添加到Objective-C Bridging Header
下的构建设置中