如何使一个UITextView子视图添加文本时不滚动的UIScrollView?(How to ma

2019-11-04 14:12发布

我有有一个子视图的UITextView一个UIScrollView。 当我通过代码添加文本的UITextView的视图滚动到最后一行。 我想认为,当我通过代码添加文本的UITextView不滚动。 任何人都可以帮我解决这个问题?

Answer 1:

最后,我可以解决我的问题。

我们刚刚成立的是在setScrollEnabled我们的UITextView改变UITextView中的文本,并设置NO,我们更改文本前后。

这里的示例代码

[yourTextView setScrollEnabled:YES];
yourTextView.text = [someString copy];
[yourTextView setScrollEnabled:NO];

:)



文章来源: How to make a UIScrollView with a UITextView sub view not scroll when adding text?