I have a project in which I added Parse manually (added source code manually, linked frameworks etc.). Now, trying to add cocoapods to the project breaks it horribly. I get around 50 build time errors. They are all mach-o linker errors. The reason I believe that it's linked to parse is because I get linker errors like the following:
Undefined symbols for architecture x86_64:
"_ACAccountTypeIdentifierTwitter", referenced from:
-[PF_Twitter getLocalTwitterAccountAsync] in Parse(PF_Twitter.o)
These continue throughout the rest of the error log, and end with this:
ld: symbol(s) not found for architecture x86_64
clang: error: linker command failed with exit code 1 (use -v to see invocation)
Here is what my Podfile
looks like:
# 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
I would love to work with someone to try and diagnose this problem. Thanks! :)