I am trying to customize my UITableViewCell and am subclassing it and then overloading layoutSubviews as suggested in this thread:
I can get the width of my label to change this way, but I am unable to use the following to make the labels multi-line.
self.textLabel.numberOfLines = 2;
self.textLabel.lineBreakMode = UILineBreakModeWordWrap;
It appears to wordwrap but only show the first line centered vertically no matter how tall I make my cell. Any suggestions?