I've set up a UITableView with several custom UITableViewCell's that have some UITextField's and UISwitch's (based on Settings.app). My question is, when a user clicks the Save button in the navigation bar, what's the beat way to access these text fields and switch controls to save their values?

link|improve this question

feedback

3 Answers

up vote 13 down vote accepted

My suggestion is to not use custom UITableViewCells. I used to do it your way, but there's a much better way. Use the accessoryView property of the UITableViewCell, which you can assign an arbitrary view to, such as a UITextField or UISwitch. It shows up exactly as it would in the Settings application.

Then, when you need to access it, just use

NSString *text = ((UITextField *)cell.accessoryView).text;

However, you must be careful about setting up cells and accessing their values. If any cell goes offscreen, it will be removed and you will not be able to access the text field. What you want to do when setting up your cell is:

cell.accessoryView = nil;  //Make sure any old accessory view isn't there.
if (/*cell needs text field*/) {
    UITextField *textField = [[[UITextField alloc] initWithFrame:frame] autorelease];
    textField.text = savedValue;
    cell.accessoryView = textField;
    [textField addTarget:self action:@selector(textChanged:) forControlEvents:UIControlEventValueChanged];
}

...

- (void) textChanged:(UITextField *)source {
    self.savedValue = source.text;
}
link|improve this answer
What if I have more than one cell with a text field (like the add contact view on the contacts app)? Should I add a different method for each of the views? – Rodrigo Mar 30 '11 at 21:36
Found here stackoverflow.com/questions/3572377/… that you can change the tags for textfields, so I can have one method and switch on it. – Rodrigo Mar 30 '11 at 21:41
2  
I use UIControlEventEditingDidEnd. UIControlEventValueChanged doesn't seem to get called :? – Matthias Schl Aug 15 '11 at 12:48
feedback

If you don't follow Ed's suggestion, you are probably best retaining your text view in the custom cell and adding a property to access the view.

link|improve this answer
feedback

You can also have your custom cells keep a reference to your higher-level view controller and send it notifications when the user updates values in them. Basically, copy the delegate pattern used by many library objects in UIKit.

link|improve this answer
feedback

protected by Community Aug 15 '11 at 18:05

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

Not the answer you're looking for? Browse other questions tagged or ask your own question.