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?
|
feedback
|
|
My suggestion is to not use custom Then, when you need to access it, just use
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:
| |||||||||
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. | |||
|
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. | |||
|
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.