Setting a cell's text with multiple JSON objects
I've got a simple web service in passing through some data into a table view and it's working fine. This is the code I currently have: [[cell detailTextLabel] setText:[item objectForKey:@"Ball 1"]]; As I said, this works perfectly and displays with a ball number, e.g. "1", taken from the web service. What I want to do is have it display, e.g. "1 & 3". Looking at some other code I thought it might have been: [[cell detailTextLabel] setText:[item objectForKey:@"Ball 1"]item objectForKey:@"Ball 2"]]; I'm totally new to Objective-C, and I'm doing a few tutorials and I'm trying to expand on them a