This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| PUBLCI 3 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| PUBLIC |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| I AM OPEN |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Back port |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| FROM A LION VM |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| - (void) ourMagicalMethod { | |
| [Parse setApplicationId:@"SOME_ID" clientKey:@"Your Super Secret KEY"]; | |
| [PFFacebookUtils initializeWithApplicationId:@"SOME_FB_ID"]; | |
| NSArray* permissions @["desired permissions"]; | |
| [PFFacebookUtils loginWithPermissions:permissions block:^(PFUser* user, NSError* error) { | |
| // your epic logic goes heres | |
| }]; | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| public void yourMagicalMethod() { | |
| Parse.initialize(this,"pID" "pKEY"); | |
| ParseFacebookUtils.initialize("fbId"); | |
| ParseFacebookUtils.login(this, new LoginInCallback() { | |
| @Override | |
| public void done(Parse user, ParseException err) { | |
| // your awesome logic | |
| } | |
| }); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| - (void) someMagicalFunction { | |
| PFQuery* query = [PFQuery queryWithClassName:@"SomeClass"]; | |
| [query whereKey:@"SomeProperty" equalTo:@"MagicString"]; | |
| [query findObjectsInBackgroundWithBlock:^(NSArray* objects, NSError* error) { | |
| // do something with the objects | |
| }]; | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| void someMagicalFunction() { | |
| ParseQuery query = new ParseQuery("SomeClass"); | |
| query.whereEqualTo("SomeProperty", "MagicString" | |
| query.findInBackground(new FindCallback() { | |
| public void done(Lis<ParseObject>objects, ParseException e) { | |
| // do something with objects | |
| }); | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @-webkit-keyframes wiggle { | |
| 0% { | |
| -webkit-transform:rotate(4deg); | |
| } | |
| 50% { | |
| -webkit-transform:rotate(-4deg); | |
| } | |
| 100% { | |
| -webkit-transform:rotate(4deg); | |
| } |
OlderNewer