Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

No Such Module 'Parse'

I am copying the parse frameworks to my Xcode project and checking the checkbox that says Copy files if needed.

Projects runs without a problem. But when if I move the Parse SDK folder to the trash Xcode says "No Such Module 'Parse'".

It should not say that because I am copying files not making file references to my project. How can I solve it?

like image 791
Mamedoff Avatar asked Jun 05 '15 09:06

Mamedoff


Video Answer


2 Answers

I just had this problem, and I got it to work by doing this:

I opened my Target > Build Settings > Search Paths > Framework Search Paths.

enter image description here

I added two values: $(PROJECT_DIR) and $(inherited)

I don't know why these were empty in the first place, but there you have it.

like image 168
bkSwifty Avatar answered Sep 17 '22 17:09

bkSwifty


I was having the same issue.

In my case, using swift and CocoaPods, I didn't have to import Parse in my AppDelegate. I only needed to #import <Parse/Parse.h> #import <Bolts/BFTask.h> on my Bridging header.

like image 27
Lucas Avatar answered Sep 18 '22 17:09

Lucas