1

I get familiar with Parse Mobile App Platform recently. It can be use to add a backend to the mobile applications. It includes a REST API that lets you interact with Parse from anything that can send an HTTP request like my iOS app.

I am looking for some easy to learn tutorials. Do you know some one?

bryanmac
  • 38,941
  • 11
  • 91
  • 99
Ali
  • 9,800
  • 19
  • 72
  • 152

2 Answers2

1

Go ahead and try the tutorials right at their webpage: Parse tutorials.

tilo
  • 14,009
  • 6
  • 68
  • 85
1

Parse has an iOS API so although you could, you don't have to go down to the http level and do your own serialization and deserialization of objects.

This guide shows interactions: https://parse.com/docs/ios_guide

Since you're making http calls, I would highly recommend looking at their async APIs using blocks so you don't block the UI thread. For example:

[gameScore saveInBackgroundWithBlock:^(BOOL succeeded, NSError *error) {
  if (!error) {
     // The gameScore saved successfully.
  } else {
    // There was an error saving the gameScore.
  }
}];

So, prefer all methods ending "WithBlock". Also see: How do i run a proccess without blocking user interface in my iphone app

Community
  • 1
  • 1
bryanmac
  • 38,941
  • 11
  • 91
  • 99