我不知道为什么,但是当文本足够大时,当我加载视图时,它会一直滚动到底部而没有任何动画。为什么会这样?
我尝试过但没有用的东西:
1。
textView.scrollEnabled = NO;
[textView scrollRangeToVisible:NSMakeRange(textView.text.length - 1,0)];
textView.scrollEnabled = YES;
2。
textView.layoutManager.allowsNonContiguousLayout = NO;
3。
[textView scrollRangeToVisible:NSMakeRange(0, 0)];