I am building an app with Parse as the backend and with Xcode 7.1. I am NOT using cocoa pods. My app was building on the device just fine, however when I try to run it on the simulator I get
'Parse/Parse.h' file not found
I have included Parse.framework in my project folder and my framework search path is
$(inherited) $(PROJECT_DIR)
Why is this error occurring only for the simulator and how do I go about solving it?
UPDATE: SOLVED
My project is now running on the simulator. I changed my framework search path to
$(inherited) $(PROJECT_DIR)/projectname
Then in my build phases I actually had a duplicate MessageUI.framework.
So I deleted both, re-added one, and then made sure there was no duplicates in my 'Frameworks' project folder.
After removing duplicates my project ran!