Would you use a UITableViewController to implement a check list on the iPhone?

Posted by Tony on Stack Overflow See other posts from Stack Overflow or by Tony
Published on 2010-03-09T02:44:53Z Indexed on 2010/03/09 2:51 UTC
Read the original article Hit count: 274

Filed under:
|

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

© Stack Overflow or respective owner

Related posts about iphone

Related posts about user-interface