You must be checking into the cell.contentView
not the view itself. :)
gcamp
2010-01-10 00:40:33
You must be checking into the cell.contentView
not the view itself. :)
Since you're creating the cell in Interface Builder, I wouldn't use the tag thing anyway. I'd just subclass UITableViewCell as MyCell or something, change your table cell's class to MyCell, then declare some IBOutlets in MyCell that you can connect the subviews to. That also allows you to define some convenience methods/properties for the cell as well.
Then you can forget the tags and just do myCellInstance.nameLabel.text = @"Joebob Briggs" or whatever.