UITextView作為內容文本輸入區域,有的時候我們需要根據內容動態改變文本區域的高度,效果如下:

定義UITextView,實現UITextViewDelegate:
-(UITextView *)textView{
if (!_textView) {
//http://www.cnblogs.com/xiaofeixiang/
_textView=[[UITextView alloc]initWithFrame:CGRectMake(30, 200, CGRectGetWidth([[UIScreen mainScreen] bounds])-60, 30)];
[_textView setTextColor:[UIColor redColor]];
[_textView.layer setBorderColor:[[UIColor blackColor] CGColor]];
[_textView setFont:[UIFont systemFontOfSize:15]];
[_textView.layer setBorderWidth:1.0f];
[_textView setDelegate:self];
}
return _textView;
}
實現textViewDidChange方法:
-(void)textViewDidChange:(UITextView *)textView{
//博客園-FlyElephant
static CGFloat maxHeight =60.0f;
CGRect frame = textView.frame;
CGSize constraintSize = CGSizeMake(frame.size.width, MAXFLOAT);
CGSize size = [textView sizeThatFits:constraintSize];
if (size.height<=frame.size.height) {
size.height=frame.size.height;
}else{
if (size.height >= maxHeight)
{
size.height = maxHeight;
textView.scrollEnabled = YES; // 允許滾動
}
else
{
textView.scrollEnabled = NO; // 不允許滾動
}
}
textView.frame = CGRectMake(frame.origin.x, frame.origin.y, frame.size.width, size.height);
}
