You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
}
internalTextViewFrame forget minus contentInset.left and contentInset.right, this make internalTextView width larger and result in messureHeight wrong.
should add:
internalTextViewFrame.size.width -= contentInset.left + contentInset.right;
The text was updated successfully, but these errors were encountered:
-(void)resizeTextView:(NSInteger)newSizeH
{
if ([delegate respondsToSelector:@selector(growingTextView:willChangeHeight:)]) {
[delegate growingTextView:self willChangeHeight:newSizeH];
}
}
internalTextViewFrame forget minus contentInset.left and contentInset.right, this make internalTextView width larger and result in messureHeight wrong.
should add:
internalTextViewFrame.size.width -= contentInset.left + contentInset.right;
The text was updated successfully, but these errors were encountered: