tags:

views:

70

answers:

1

I'm trying to build an iPhone app where I have a list of names, and can search by year to find the top ten names for that year. How would I need to set that up in xcode?

+2  A: 

You say you are new to iphone development so you can start with this primer

After that I recommend you build a simple web service using your platform and language of choice in your application get the input and make a web service call to the webservice.

You could improve your application by having it work offline and use a local database for its data.

Both approaches will work.

Paul Whelan