Created
August 28, 2012 00:29
-
-
Save dominickm/3493800 to your computer and use it in GitHub Desktop.
This is the PFQuery sample for Android.
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 | |
| }); | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment