I have a problem xcode can't find the headers of my pods in my wokspace.
The headers search path for the target seems ok

Here is the content of my podfile
target "MyApp" do pod 'AFNetworking', '~> 2.0' pod 'Reachability' pod 'ViewDeck', '2.2.11' pod 'MBProgressHUD', '~> 0.8' end   But when i build the project i have this error in the prefix.pch
/Users/...../MyApp-Prefix.pch:17:13: 'AFNetworking.h' file not found
I have tried to add platform :ios, "8.0" in my podfile and do a pod update but still no luck
I have also tried to add $(inherited) like suggested in the SO question : Xcode 6 doesn´t find cocoapods libraries
I'm using xcode 6 on mavericks
I found solution. In your project properties replace this:

You might also want to link your pods with both your targets like so:
platform :osx, '10.7'  link_with 'MyApp', 'MyApp Tests' pod 'AFNetworking', '~> 1.0' pod 'Objection', '0.9'   From Cocoapods docs and this answer
Update: This no longer works for Cocoapods 1.0+, the correct way to implement the Podfile is:
platform :ios, '9.0' inhibit_all_warnings!  target 'MyApp' do   pod 'ObjectiveSugar', '~> 0.5'    target "MyAppTests" do     inherit! :search_paths     pod 'OCMock', '~> 2.0.1'   end end   Source: https://guides.cocoapods.org/syntax/podfile.html#podfile
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With