我在 aUITextView
的所有单元格中都有 a UITableview
。文本视图的高度是动态增加的。随着文本视图大小的增加,我想增加该单元格的高度。我写成
-(BOOL)textView:(UITextView *)textView1 shouldChangeTextInRange:(NSRange)range replacementText:(NSString *)text
{
NSLog(@"textTag%d",textView1.tag);
NSString *stringToSave = [textView1.text stringByReplacingCharactersInRange:range withString:text];
NSLog(@"Save me: %@", stringToSave);
CGFrame*frame =textView1.frame;
frame.size.height = textView1.contentSize.height;
textView1.frame = frame;
//这里我需要增加特定单元格的高度。
if([text isEqualToString:@"\n"])
{
[textView1 resignFirstResponder];
}
return YES;
}