This is a sample getData method in my viewController.m file
-(void) getData {
// Create new SBJSON parser object
SBJsonParser *parser = [[SBJsonParser allo
Implement the UITableViewDataSource protocol:
tableView:numberOfRowsInSection:
- return the number of "statuses"tableView:cellForRowAtIndexPath:
- return a UITableViewCell whose textLabel.text is set to your text.There are plenty of examples in Apple's docs, including the project you get when you create a new app using Xcode's "Master-Detail App" template.