我没有可编辑的 UITextView。当它获得焦点时,光标位置在开头。如何设置光标的位置?(我正在使用带有盲文键盘的 iPhone 设计,当不可编辑的 UITextView 获得焦点时,我从一开始就有文本,所以我需要设置光标的位置。)
问问题
372 次
1 回答
0
如果要在末尾设置光标位置,请像这样使用此委托::
- (void)textViewDidChangeSelection:(UITextView *)textView{
textView.text =[NSString stringWithFormat:@"%@",textView.text];
}
- (BOOL)textView:(UITextView *)textView shouldChangeTextInRange:(NSRange)range replacementText:(NSString *)text{
return NO;
}
记住一件事将 UITextView 属性设置为 yes 以显示光标
于 2012-12-24T11:37:05.100 回答