i use some code for inline cell editing from Apples TaggedLocations Example and im now stuck.
At the demo Code they save the changes at textFieldDidEndEditing, this works because they asume to edit only the first element in a table view.
I have to edit every row at the table view, so my problem is how to get indexPath.row to update the correct object stored in a mutableArray.
Or did i miss something?
Thanks for your help!
One way is when you add the text field to the cell in cellForRowAtIndexPath, set its tag property to indexPath.row. Then in textFieldDidEndEditing, get the row using textField.tag.