gpt4 book ai didi

scroll - iOS 8 中的 UITextView 问题 : text view not scroll when entering text

转载 作者:行者123 更新时间:2023-12-02 01:25:46 25 4
gpt4 key购买 nike

我在 iOS 8 中遇到问题,之前的版本运行完美。

当我输入超过 4 行的文本时,我的 TextView 大约为 4 行, TextView 会自动向上滚动,但在这种情况下,在 iOS8 中不会滚动。

这是我的代码。

- (BOOL)textView:(UITextView *)textView shouldChangeTextInRange:(NSRange)range replacementText:(NSString *)text{

NSString *updatedString = [textView.text stringByReplacingCharactersInRange:range withString:text];
textView.text = updatedString;
return NO;


}

提前致谢。

最佳答案

试试这个代码。

- (BOOL)textView:(UITextView *)textView shouldChangeTextInRange:(NSRange)range replacementText:(NSString *)text{

NSString *updatedString = [textView.text stringByReplacingCharactersInRange:range withString:text];
//textView.text = updatedString;
[textView replaceRange:textView.selectedTextRange withText:text];
return NO;

}

关于scroll - iOS 8 中的 UITextView 问题 : text view not scroll when entering text,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25955394/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com