Looping through JSON array and inputting string into grouped UITableView
I am having trouble inputting my string "handle" into a group UITableView
that I have;
for(NSDictionary * dataDict in servers) {
NSString * handle [dataDict objectForKey:@"handle"];
}
I'm totally confused on how I could utilize this for statement to
dynamically create new cells with the handle.
The actual UITableView is on the main view controller and doesn't have any
cells. How can I loop through the values and create the cells with labels?
No comments:
Post a Comment