I'm pretty new to iOS Programming and I'm not too used with UITableView Cells.
I need to show some object properties in a table, in a "one property per cell" way.
If the data was stored in a NSArray, things would be much easier: I would use a "dynamic cell" layout and with the help of tableView:cellForRowAtIndexPath:'s indexPath variable, I'd fill the table easily.
But how to do the same when the data is "stored" in 20 properties of an object? Should I use the "static cell" layout maybe, and have a huge switch for addressing each of the 20 rows? Is there an easy and "cleaner" way to do this?
Thanks for your help!