Recently I set out to update an iPhone app with the ability to accept updates from our server. The plan is to let the app download a JSON file off our web server and update the internal data accordingly. Pretty simple right? It is pretty simple, but many tutorials focus on some aspects that don’t fit with ever project out there so I hope this contributes some “basic knowledge”.
To keep this simple, I’m only going to concentrate on downloading the data from a server and parsing that data. No Core Data, no SQLite, no table views. I’m not going to tell you how to build a Flickr app or a Twitter app. Just download the data and parse. What I’m using: Xcode 3.2.5, ASIHTTPRequest 1.8, and JSON Framework 2.3.1.
Continue reading →