Cocoapods can't find header xcode 6 Cocoapods can't find header xcode 6 ios ios

Cocoapods can't find header xcode 6


I found solution. In your project properties replace this:

I FOUND SOLUTION


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'  endend

Source: https://guides.cocoapods.org/syntax/podfile.html#podfile


I was able to fix this in my project. I had a second target for tests. I never used this target and the error disappeared after I deleted it from the project. So maybe not your main target is the source of the problem, but another one.