I have an NSDictionary with 5 keys and corresponding values. How can I set the value in the cell of UITableView when I don’t know the key?
d=[[NSDictionary alloc] initWithObjectsAndKeys:@"Air Bus",@"ab",
@"Boeing 787 ",@"787",@"Some Plane",
@"sp",nil];
You can show a list of the keys in the dictionary like this :
so, for your dictionary this would show
I’m assuming that you want to show all the values in a table so you will want something like this :