Would you use a UITableViewController to implement a check list on the iPhone?
- by Tony
I am creating an application that will have a list of items that can be checked. I just implemented it as a Table View by subclassing UITableViewController. Now I am realizing that since individual items don't have a child view (i.e. clicking on an item "Dinner" does not need to pull up a child list of "Dinner Items") then maybe I should have just created a custom view for the list.
In your experience, would it be better to use the Table View or create something custom?
thanks!
p.s. I am a bit new to iPhone dev, but NOT new to C