我有一个项目,我在其中手动添加了Parse(手动添加源代码,链接框架等)。现在,尝试将cocoapods添加到项目中会让人感到非常震惊。我得到大约50个构建时错误。它们都是机械连接器错误。我认为它与解析链接的原因是因为我得到如下链接器错误:
Undefined symbols for architecture x86_64:
"_ACAccountTypeIdentifierTwitter", referenced from:
-[PF_Twitter getLocalTwitterAccountAsync] in Parse(PF_Twitter.o)
这些在错误日志的其余部分继续,并以此结束:
ld: symbol(s) not found for architecture x86_64
clang: error: linker command failed with exit code 1 (use -v to see invocation)
以下是我Podfile
的样子:
# Uncomment this line to define a global platform for your project
# platform :ios, '6.0'
target 'The Underground' do
pod 'IDMPhotoBrowser'
end
target 'The UndergroundTests' do
end
我很乐意和某人一起尝试诊断这个问题。谢谢! :)