views:

237

answers:

3

New to iPhone development and working through exercises and examples to get me up to speed. Does anyone have a good reference for connecting an iPhone app to a website/webservice and push/pull data?

+1  A: 

Check this...

Consuming XML Web Services in iPhone Applications

Jorgesys
+1  A: 

This one worked for me: SOAP/web services

Nava Carmon
+2  A: 

I have not used Core Resource yet, but it may be what you're looking for. It claims to provide (from the project's front page):

  1. Easy querying into a webservice, e.g.:

    [Note findAll:$D(@"Buster", @"author", @"createdAt DESC", @"$sort")];

  2. Automatic serialization of returned results into a Core Data context

  3. Easy resource-based tables using CoreTableController, e.g.:

    [self fetchForRelatedResource:parent withSort:@"lastName ASC"];

Barry Wark