I'm trying to create an iphone app which grabs a JSON string, parses it and displays a list of items in at table view.
I'm also attempting to use an Model-View-Controller (MVC) architecture for my project.
My question is in 2 parts:
1) How do I structure my different files to conform to this standard (MVC) ?
2) (more general) I've been going through a lot of XML parsing examples, and they seem to implement standard methods such as 'requestDidFinishLoad', 'setActiveProperty', etc... How can I find out exactly what methods I need to implement to successfully send a request and parse a JSON string?