gpt4 book ai didi

iphone - 如何为不可编辑的 UITextView 设置光标位置?

转载 作者:行者123 更新时间:2023-12-01 16:53:06 24 4
gpt4 key购买 nike

我没有可编辑的 UITextView。当它获得焦点时,光标位置在开头。如何设置光标的位置? (我正在使用带有盲文键盘的 iPhone 设计,当不可编辑的 UITextView 获得焦点时,我从一开始就有文本,所以我需要设置光标的位置。)

最佳答案

如果要在末尾设置光标位置,请像这样使用此委托(delegate)::

- (void)textViewDidChangeSelection:(UITextView *)textView{
textView.text =[NSString stringWithFormat:@"%@",textView.text];
}

- (BOOL)textView:(UITextView *)textView shouldChangeTextInRange:(NSRange)range replacementText:(NSString *)text{
return NO;
}

记住一件事将 UITextView 属性设置为 yes 以显示光标

关于iphone - 如何为不可编辑的 UITextView 设置光标位置?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14020385/

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