是否可以实例化UITextRange
和UITextField
的第一个字符?
我需要访问UITextField
第一个字符的矩形,任何人都可以帮助我吗?
提前致谢
答案 0 :(得分:11)
您可以使用UITextRange
提供的方法手动创建UITextInput
:
UITextPosition *firstCharacterPosition = [textField beginningOfDocument];
UITextPosition *secondCharacterPosition = [textField positionFromPosition:firstCharacterPosition offset:1];
UITextRange *firstCharacterRange = [textField textRangeFromPosition:firstCharacterPosition toPosition:secondCharacterPosition];
NSString *firstCharacter = [textField textInRange:firstCharacterRange];