I need to create a form so that the user can edit all cells of the table (about 20).
Can I do it with UITableViewCellStyleValue2? If so, how?
Or do I need to create a subclass of UITableViewCell?
In terms of arquitect, maybe it’s better to create a subclass, but anyway, i’ll need to edit the table, the textlabel.text property.
What’s the best way? And how can I do it?
Thanks,
RL
I recommend adding your own views to the cell’s contentView, like so:
This is just a demonstration but you can see where you need to extend it to support additional cells, etc.