I have a simple table view which is editable. All I need the user to be able to do is edit the text field in the cell when they choose to edit the table.
views:
321answers:
2
A:
You need to subclass UITableViewCell to make it editable inline. The default implementation just contains UILabels, which are not editable. For example, if you had a UITextField view in your cell, you'd override - (void)setEditing:(BOOL)editing animated:(BOOL)animated
and make the text field become the first responder.
drewh
2010-03-31 16:40:21
A:
Here's a project you may want to look at: InAppSettings (http://bit.ly/6BegQa). You can see first hand from the src how to make table cells editable for various types of data.
cagreen
2010-03-31 16:52:02