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?
+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):
Easy querying into a webservice, e.g.:
[Note findAll:$D(@"Buster", @"author", @"createdAt DESC", @"$sort")];
Automatic serialization of returned results into a Core Data context
Easy resource-based tables using
CoreTableController
, e.g.:[self fetchForRelatedResource:parent withSort:@"lastName ASC"];
Barry Wark
2010-05-04 17:47:50