I'm trying to store an NSArray object with a simple key (1,2,3 etc.) inside an NSDictionary. I'm pretty sure thats worked, but I'm not sure how to display the array data thats stored in there, I've got the following working (displaying a single array of data)
The test app i'm working on is a simple dictionary. Definition is the class i've got for words and their definitions, and words is an array which has two values - word and definition
Definition *words = (Definition *)[appDelegate.words objectAtIndex:indexPath.row];
It then shows the data in a table view:
[cell.textLabel setText:words.name];
[cell.detailTextLabel setText: words.description];