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
try this
set your UITextView outlet like this in your custom UITableViewCell class
[yourTextView setAutoresizesSubviews:YES]; yourTextView.autoresizingMask = UIViewAutoresizingFlexibleWidth;
hope this will work for you