zoukankan      html  css  js  c++  java
  • UITextField 光标的位置设置获取

    UITextField 光标的位置设置获取

    通过给UITextField 加一个拓展

     //#import "UITextField+ExtentRange.h"  

    #import <UIKit/UIKit.h> 

    @interface UITextField (ExtentRange)  

    - (NSRange) selectedRange;  

    - (void) setSelectedRange:(NSRange) range;  

    @end  

    // #import "UITextField+ExtentRange.m"  

    #import "UITextField+ExtentRange.h"  

    @implementation UITextField (ExtentRange)  

    - (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  

  • 相关阅读:
    对数据库中表的指定行的操作
    查找表中指定行的数据
    Smart.coder每日站立会议08
    SmartCoder每日站立会议07
    SmartCoder每日站立会议06
    SmartCoder每日站立会议05
    SmartCoder每日站立会议04
    SmartCoder每日站立会议03
    SmartCoder每日站立会议02
    SmartCoder每日站立会议 01
  • 原文地址:https://www.cnblogs.com/56ik/p/5135318.html
Copyright © 2011-2022 走看看