8

I am trying to run https://github.com/kwkhaw/quick-start-ios-swift this project. But facing this error while compiling the code. Following is the image description for the same.

Nishant Dongare
  • 549
  • 3
  • 16

1 Answers1

16

I ran into the same issue as yourself after I had upgraded to Xcode 7. Go to Target -> Search Paths -> User Header Search Paths and make sure you are not missing Pods/** - recursive. This fixed the problem for me.

JLC
  • 176
  • 1
  • 2
  • 2
    Just to save someone else some time. If you are missing this path you should add `$(PODS_ROOT)` and set it to recursive. Add it to the *app* target and it will automatically figure out the correct path. – Nikola Lajic Oct 28 '15 at 20:40
  • Can someone post the text from their Header Search Paths? – Unome Sep 02 '16 at 04:52