textView 自动换行, 可以文本内容动态移动
2017-05-22 本文已影响53人
王誌傑
-(void)textViewDidChange:(UITextView*)textView{
//博客园-FlyElephant
staticCGFloatmaxHeight =95;
CGRectframe = textView.frame;
CGSizeconstraintSize =CGSizeMake(frame.size.width,MAXFLOAT);
CGSizesize = [textViewsizeThatFits:constraintSize];
if(size.height<=maxHeight) {
size.height=maxHeight;
}
textView.scrollEnabled=NO;//不允许滚动
textView.frame=CGRectMake(frame.origin.x, frame.origin.y, frame.size.width, size.height);
}