Hi,
I've been tasked with creating an iPhone app which will tap into a series of REST API JSON feeds from Twitter.
I'm somewhat new to iPhone development, but I've created a few apps before, though none of them required tapping into API data.
So let's say we have 3 views in Interface Builder that are being controlled by a tabcontroller:
- Feed
- Followers
- Following
Each of these views need to display a JSON feed in a tableview. The data should be loaded at the time of the view being shown.
There will also be a searchbox that makes a request to Twitter's search API JSON feed and returns results in a UITableView in another view.
I've installed and imported the json-interface library in my project. I have also successfully received the feed in an NSString.
But here's my questions:
How should I prep my application to make requests to multiple JSON feeds and display the respective data in different tables on different views? All the tutorials I see only show one JSON request being formatted into one table on one view. For instance: http://iphonedevelopertips.com/cocoa/json-framework-for-iphone-part-2.html
How does Interface Builder fit into this? How can I use the tables I inserted into my views in Interface Builder?
Any tutorial links or pertinent project source code would be much appreciated!
Thanks!
Dave