objective c - Getting error while creating PFAnonymousUser using Parse iOS SDK -
in ios application using parse sdk.
i creating parse anonymous user using code
[pfanonymousutils loginwithblock:^(pfuser *user, nserror *error) { if (error) { nslog(@"anonymous login failed."); } else { nslog(@"anonymous user logged in."); } }];
i able create anonymous user previously. getting error below in console. , not creating pfuser
+[bftask taskfromexecutor:withblock:]: unrecognized selector sent class 0x3ee868
please me in issue.
thanks in advance.
i had same problem , solved follows:
- download latest facebook sdk , replace old frameworks in project.
- copy bolts.framework in frameworks folder (don't know why don't import in xcode project)
compile & run , shouldn't have problem.
Comments
Post a Comment