создать UITableViewCell с UITextView
-(id)initWithStyle:(UITableViewCellStyle)style reuseIdentifier:(NSString *)reuseIdentifier {
if ((self = [super initWithStyle:style reuseIdentifier:reuseIdentifier]))
{
// Initialization code
UITextView *textView = [[UITextView alloc] initWithFrame:CGRectZero];
textView.scrollEnabled = NO;
//textView.userInteractionEnabled = YES;
textView.text = content;
textview.delegate = self;
[textView setFrame:CGRectMake(0.0, 0.0, 320.0, textView.contentSize.height)];
[self addSubview:textView];
}
return self;
}
не забудьте оставить клавиатуру.
textViewDidEndEditing: