iphone - Y/N: UitableView Question -
Y / N: Is it possible to set the one cell inside a utivite To keep multiple cells at a dynamic height which varies depending on the value of that text?
Yes. You can specify the height of a cell by implementing tableView: heightForRowAtIndexPath:
in its UITableViewDelegate
. You can get row height using NSString's sizeWithFont: constrainedToSize: lineBreakMode:
method.
Comments
Post a Comment