views:

36

answers:

0

I have a NSMutableDictionary that I'm loading into a UITableview, The first level has "names" and the second level is "details". I want to be able to edit the attribute (strings) and then save them back into the Dictionary.

I can't seem to find how to do this, every example I see uses Managed objects with a separate editor for each item, which is frustrating as I don't think I need to go there.

I did find this: iphone-dev-editing-tableview-with-a-detailview-core-data It's similar to what I'm looking for but don't understand the substitution he's talking about to make it work with a dictionary.

The Apple UiTableview edit mode shows to add items and delete them, not adjust a string.

Any guidance would be appreciated. Especially a link to a tutorial.

Thanks.