With Xcode 6.3 Parse. framework was giving me errors, so I download the updated Parse framework and things started working.
Now, there is something new which I am trying to understand what this method logInWithUsername
is. Previously it used to pretty simple. I see more null while writing the code. And at some point I get confused, mainly with pointer to a pointer (i.e NSError
).
[PFUser logInWithUsername:(NSString * __nonnull) password:(NSString * __nonnull) error:(NSError * __nullable __autoreleasing * __nullable)];
When I jump to definition, it's a quite a different story, the syntax seems to be clear here:
+ (PF_NULLABLE instancetype)logInWithUsername:(NSString *)username password:(NSString *)password error:(NSError **)error;
Am I missing something on configuration or setup side for this framework?