views:

46

answers:

2

I notice that InterfaceBuilder has UITableViewCell in its library of objects I can drag onto a view. I wonder if it ever makes sense to use one outside of a UITableView.

A: 

I'll tell you one word, it has two letters, and it's the word "on" spelled backwards. :)

Seriously, you wouldn't ever want to have a UITableViewCell outside of a UITableView.

Jacob Relkin
I want to have a wide, narrow button with a title and a subtitle and a disclosure accessory.
iter
So stick it in a `UITableView` if you so desire. I would strongly discourage using a `UITableViewCell` outside of a `UITableView`.
Jacob Relkin
A: 

It's called a UITableViewCell for a reason.

BoltClock