Upgrade to Pro — share decks privately, control downloads, hide ads and more …

Parse at Sincerely

Parse at Sincerely

Overview of Parse and how they are transforming the way mobile applications store, sync, and push data.

Avatar for sincerely

sincerely

March 22, 2012
Tweet

Other Decks in Technology

Transcript

  1. PFUser *user = [[PFUser alloc] init]; user.username = @”Bob Jackson”;

    user.password = @”monkey”; [user setObject:longestRunTime forKey:@”longestRun”]; [user signUpInBackgroundWithBlock: ^(BOOL succeeded, NSError* e) { // ... }];
  2. PFUser *user = [PFUser currentUser]; if (user) { int longestRun

    = [[user objectForKey:@”longestRun”] intValue]; if (newRun > longestRun) { // Congrats! } }
  3. Not Just Users • Object data • Relational data •

    Push notifications • Files • Facebook integration
  4. Not Just iOS • Android SDK • REST API •

    Community: • Ruby, Python, PHP, Javascript, Java, .NET, Unity3d, ActionScript, WebOS, Clojure...