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?
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:
So, prefer all methods ending “WithBlock”. Also see: How do i run a proccess without blocking user interface in my iphone app