I have a custom UITableViewCell and I\'m trying to resize the UITextView inside it based on the content size. I\'m on iOS7 and using Autolayout.>
UITableViewCell
UITextView
You may forget implement the heightForRowAtIndexPath method of TableView's delegete;
-(CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath { CGFloat yourTextViewsHeight = ... calculate it here return yourTextViewsHeight; }