I want to add the PLCrashFramework in my app. This frameworks deals with crash reporting for iOS/MAC applications. What I did
- Downloaded and unzipped the .zip file from the URL I have already provided.
- In Xcode "Build Phases" -> Link Binary With Libraries
- From the pop up "Choose frameworks and libraries to add"
- Select "Add Other"... and select "CrashReporter.framework" and Open
After those steps I successfully built the project without problems.
I closed the Xcode, opened it again and tried to build. The build failed with "header file not found", referring to a header file that belongs to the framework.
Why the xcode 6 does not find the header after closing and reopening the project?
