I am making an app in which I need to use
[PFUser enableRevocableSessionInBackground]
However, when I add this to my app delegate, it says there is no know class method. Am I forgetting to import a header?
I am making an app in which I need to use
[PFUser enableRevocableSessionInBackground]
However, when I add this to my app delegate, it says there is no know class method. Am I forgetting to import a header?
That's a great guess.
Try doing:
#include "Parse/PFUser.h"
or
#include "PFUser.h"