TJ Thomas
TJ Thomas

Reputation: 45

Using Parse to make an iOS Social Network App?

I want to make an iOS Scocial Network, almost like Facebook. But I only do it to test my Objective C programming skills so it wont be massive like Facebook (though it will have all features that Facebook has). What I want to ask is: Can I only use my Objective C knowledge to build my front-end app and use Parse Services (Parse.com) to build my back-end? Or I need some tools, knowledge etc...?

Again, I do not make a very very big iOS Social Network app like Facebook but I do a smaller one that has all features Facebook has.

Any advice would be appreciated.

Upvotes: 2

Views: 5901

Answers (3)

Harish
Harish

Reputation: 1519

Parse is the way to go. You might want to check out Helios and Stackmob as well. They do the same thing as parse. However, I like Parse much better because of it's documentation.

Happy learning.

Upvotes: 0

Mark McCorkle
Mark McCorkle

Reputation: 9414

parse.com/tutorials actually has a couple tutorials that would be very helpful in creating your social app. It may even be exactly what you are wanting.

Upvotes: 0

Wain
Wain

Reputation: 119031

Yes, you can use Objective-C to create the app and use Parse.com to host your data. You can use the Parse SDK to allow the app to easily access the backend data. It will work well (depending on how well you design the Parse data storage) and you won't need to write any (or much) backend code.

Upvotes: 3

Related Questions