I'm trying to place a UILabel directly in the middle of a UITableViewCell vertically. Essentially I'm doing something such as:
float yPos = self.contentView.center.y;
I then assign yPos to my UILabel and add it as a subview of self.contentView within my UITableView subclass.
This still doesn't appear to be smack in the middle of the cell.
What am I missing?