I’m investigating the possibility’s on building an profile based Iphone app.
Would like to display profiles as images ( data comes from a webapp ).
Below is example of what I mean its a dating app wich I dont want to make but I really like the image idea,
- Anyone can advise me on any tutorials/ resources on building specific a profile listing IOS app with pictures like in the image?
- Any opensource libs I should use or would be advised to create a profile centered IOS app?
I’m not so experienced with programming but if I were you i would follow these:
1) Create database&server of the application which will hold and send data to application
2) Have a login(modal) view and using that send user informations to server(via a GET or anyway)
3) Fetch and parse data from server in your application(if your app will jus target iOS 5 this is a great class, if not use some XML or JSON parser library. By the way, iwould chose JSON format to send&receive data:)
4) Use Core Data to create a database(let’s say for mobile devices) and make your relations.
5) The data will come from the server and via XML or JSON format will be loaded to your app’s database(mean CoreData)
6) Don’t forget to use UIAlertView or classes like that to inform user about the username&password wrong enterings or thğings like that:)
For the resources, I bet you will like CS193p video Lectures of Standford University in i-Tunes and http://www.raywenderlich.com/ was a lot of good explained tutorials