我有一个使用情节提要构造的 UITextField 。我不想让用户更改光标的位置并将其始终保持在文本末尾的文本字段中。
我试图在达阵事件中更改光标的位置,但是在选择文本字段,然后通过再次触摸文本字段来更改光标的位置时,该位置会更改:
- (IBAction)amountBoxTouchDown:(id)sender {
UITextPosition *start = [amountBox positionFromPosition:[amountBox beginningOfDocument] offset:amountBox.text.length];
UITextPosition *end = [amountBox positionFromPosition:start
offset:0];
[amountBox setSelectedTextRange:[amountBox textRangeFromPosition:start toPosition:end]];
}
有谁知道解决方案?谢谢