I have a plist with the following structure:
<dictionary>
- <array>
--- <dictionary>
--- <dictionary>
--- <dictionary>
--- <dictionary>
--- <dictionary>
- <array>
--- <dictionary>
--- <dictionary>
--- <dictionary>
--- <dictionary>
I need to know how to add the contents of a key within the nested dictionaries into a tableViewCell from within the:
method.
That is each nested dictionary has a key named "type" i need the populate the table with the values for the objectForKey
"type" within all arrays.
I know how to do it for just one array, but not sure how to go to the next one. hope this makes sence, and thanks for the help!
<dictionary>
- <array>
--- <dictionary>
--- <dictionary>
--- <dictionary>
--- <dictionary>
--- <dictionary>
- <array>
--- <dictionary>
--- <dictionary>
--- <dictionary>
--- <dictionary>
I need to know how to add the contents of a key within the nested dictionaries into a tableViewCell from within the:
Code:
(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
method.
That is each nested dictionary has a key named "type" i need the populate the table with the values for the objectForKey
I know how to do it for just one array, but not sure how to go to the next one. hope this makes sence, and thanks for the help!
Last edited by a moderator: