如何使用caretRectForPosition
方法或任何其他方法限制swift中的游标最小位置。假设我有一些带有一些内容的textview,如果用户试图在第三个位置之前移动光标,它就不应该移动。这怎么可能?阅读几篇文章,但没有回答我的问题。
答案 0 :(得分:3)
我假设通过限制游标最小位置意味着从样本字符串中取出:“这是一个示例字符串” - 您想确保用户所做的选择是在某个NSRange内吗?
UITextView有一个委托协议,其中包含一个在选择更改时调用的方法:
- (void)textViewDidChangeSelection:(UITextView *)textView
您可以实现委托,监听此方法,然后执行以下操作:
//夫特
func textViewDidChangeSelection(textView: UITextView) {
let minLocation = 3
let currentRange = textView.selectedRange
if (currentRange.location < minLocation) {
let lengthDelta = (minLocation - currentRange.location)
//Minus the number of characters moved so the end point of the selection does not change.
let newRange = NSMakeRange(minLocation, currentRange.length - lengthDelta);
//Should use UITextInput protocol
textView.selectedRange = newRange;
}
}
//目标C
- (void)textViewDidChangeSelection:(UITextView *)textView
{
NSUInteger minLocation = 3;//your value here obviously
NSRange currentRange = textView.selectedRange;
if (currentRange.location < minLocation) {
NSUInteger lengthDelta = (minLocation - currentRange.location);
//Minus the number of characters moved so the end point of the selection does not change.
NSRange newRange = NSMakeRange(minLocation, currentRange.length - lengthDelta);
//Should use UITextInput protocol
UITextPosition *location = [textView positionFromPosition:[textView beginningOfDocument] offset: newRange.location];
UITextPosition *length = [textView positionFromPosition:location offset:newRange.length];
[textView setSelectedTextRange:[textView textRangeFromPosition:location toPosition:length]];
}
}
您也可以使用类似的方法来施加最大选择/长度等。
这意味着在早期的示例字符串上,您将无法在字符串的开头选择任何“Thi”。
有关UITextView委托的更多信息: https://developer.apple.com/library/ios/documentation/UIKit/Reference/UITextViewDelegate_Protocol/