I recently had to delete a xcode project from my computer and re-clone it down. After cloning it, I ran a pod install
and then went to build the project. However, I kept hitting a error in my .pch file that claimed a file (a pod file) was not found.
I looked into the following SO posts:
iOS - Build fails with CocoaPods cannot find header files
Unit Test build failing when importing MagicalRecord
From there I gathered that I needed to add to Header Search Paths the $(inherited)
flag. I've done that, I've cleaned the project, and then re-built it, and still am having the following error..