[Solved] JSON to UITableView error


objectAtIndex is a method for NSArray. Your Menu object is an NSDictionary. You need to get the array within the Menu dictionary like this:

NSArray *myArray = [Menu objectForKey:@"GetMenuMethodResult"];

and use myArray as the source for your rows.

0

solved JSON to UITableView error