views:

83

answers:

2

I would like to allow my users to see other users data. I am thinking in terms of a game. I would like the users game on their phone to connect to an online score list , and store the lowest score on the list. Then if the user scores above, their score gets put into the list and stored.

What does this involve exactly?

Will this need encryption? which will then need the iphone encryption requirements to be met.

I am not very knowledgeable on the server side, so would need to start at the basics. Will this even need a server, or could I setup a website and grab the data from there? this making the scores available outside of the app.

Thanks in advance

+1  A: 
Steve
+2  A: 

Your needs sound like a perfect match for Apple's Game center. There's no need to muck around with setting up your own REST API and server if the only features you want are already built into the OS.

kubi
+1 for pointing out game center. I assumed he wanted to go beyond that, or was just using the game as an example situation... so good point.
Steve
From the looks of your post, you've done this before. Setting up a server / API is *hard* and takes a lot of work. Stuff like GameCenter and OpenFeint save you a lot of hard work.
kubi
@kubi For me personally, I don't make games so I have no use for those things... and I guess I don't think it's that hard to setup some web services, but that's probably because I do it every day. But I definitely think you're right-on with those suggestions if they meets his needs.
Steve
@steve: Thanks for your answer and I will come back to it soon for my apps that arent games. I will try out game center and see how it goes. also Thanks Kubi
alJaree