我有什么方法可以通过文本字段的 UITextRange 对象获得 UITextField 的当前插入符号位置?UITextField 返回的 UITextRange 是否有任何用处?UITextPosition 的公共接口没有任何可见成员。
问问题
13714 次
2 回答
20
我昨晚也面临同样的问题。事实证明,您必须在 UITextField 上使用 offsetFromPosition 来获取所选范围的“开始”的相对位置来计算位置。
例如
// Get the selected text range
UITextRange *selectedRange = [self selectedTextRange];
//Calculate the existing position, relative to the beginning of the field
int pos = [self offsetFromPosition:self.beginningOfDocument
toPosition:selectedRange.start];
我最终使用了 endOfDocument,因为在更改文本字段后更容易恢复用户的位置。我在这里写了一篇博客文章:
http://neofight.wordpress.com/2012/04/01/finding-the-cursor-position-in-a-uitextfield/
于 2012-04-01T17:07:18.420 回答
13
我在 uitextfield 上使用了一个类别,并实现了 setSelectedRange 和 selectedRange(就像在 uitextview 类中实现的方法一样)。在 B2Cloud 上找到了一个示例,其代码如下:
@interface UITextField (Selection)
- (NSRange) selectedRange;
- (void) setSelectedRange:(NSRange) range;
@end
@implementation UITextField (Selection)
- (NSRange) selectedRange
{
UITextPosition* beginning = self.beginningOfDocument;
UITextRange* selectedRange = self.selectedTextRange;
UITextPosition* selectionStart = selectedRange.start;
UITextPosition* selectionEnd = selectedRange.end;
const NSInteger location = [self offsetFromPosition:beginning toPosition:selectionStart];
const NSInteger length = [self offsetFromPosition:selectionStart toPosition:selectionEnd];
return NSMakeRange(location, length);
}
- (void) setSelectedRange:(NSRange) range
{
UITextPosition* beginning = self.beginningOfDocument;
UITextPosition* startPosition = [self positionFromPosition:beginning offset:range.location];
UITextPosition* endPosition = [self positionFromPosition:beginning offset:range.location + range.length];
UITextRange* selectionRange = [self textRangeFromPosition:startPosition toPosition:endPosition];
[self setSelectedTextRange:selectionRange];
}
@end
于 2012-12-04T13:11:49.430 回答