Annette
Annette

Reputation: 317

Lexical or Preprocessor Issue 'ParseFacebookUtils/PFFacebookUtils.h' file not found

I am getting the below error within AppDelegate.m while trying to run my app. I have removed and re-added the FacebookSDK.framework in hopes that it will help however, it did not. My deployment target is 7.1 and I am using Xcode 5.1.1

Lexical or Preprocessor Issue 'ParseFacebookUtils/PFFacebookUtils.h' file not found on the line below

 #import <ParseFacebookUtils/PFFacebookUtils.h>

enter image description here

Upvotes: 0

Views: 803

Answers (1)

Stanislav Morari
Stanislav Morari

Reputation: 26

"ParseFacebookUtils" and "FacebookSDK" are two different frameworks. You get error ParseFacebookUtils.framework, and as I can see from screenshot it is missing. Try to reload it (you can find it in parse-library archive).

Upvotes: 1

Related Questions