I agree with Lee. If you're creating a web app or even embedding your web service into a UIWebView it's much simpler to use the client-side storage provided by HTML5. You can store and retrieve data from JavaScript.
A couple of quick links: http://developer.apple.com/safari/library/documentation/iPhone/Conceptual/SafariJSDatabaseGuide/UsingtheJavascriptDatabase/UsingtheJavascriptDatabase.html http://webkit.org/blog/126/webkit-does-html5-client-side-database-storage/ http://6angryapes.com/javascript/webkit-html5-sqlite-client-side-database-sotrage/ If you prefer to go the Obj-C way just refer to the Apple documentation. It's quite easy. And a tip: remember to escape your JSON string before inserting it into SQLite (or any other SQL server) On May 5, 6:23 pm, QuickConnect <[email protected]> wrote: > This being the WebDev site I'm not sure this is the place for this > question. Core Data is only available in Objective-C. You could > store your JSON strings, or the data they represent, in the SQLite > database available from within Javascript. > > Lee > > On May 5, 7:12 am, rim negra <[email protected]> wrote: > > > how can I save my json web services using Core Data in xcode in an iphone > > app?? > > > thx > forcen -- You received this message because you are subscribed to the Google Groups "iPhoneWebDev" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/iphonewebdev?hl=en.
