iOS获得UITextView当前光标所在的位置.

iOS获得UITextView当前光标所在的位置.很简单:

定义两个变量

{

    UITextView * _inputTV;

    NSRange _range;

}


初始化textView:

    _inputTV = [[UITextView alloc] initWithFrame:CGRectMake(15, 10, kScreenWidth-30130)];

    _inputTV.delegate = self;

    _inputTV.backgroundColor = [UIColor clearColor];

    _inputTV.textColor = [UIColor blackColor];

    [self.view addSubview:_inputTV];


//当前光标所在的位置:

   _range = _inputTV.selectedRange;


你可能感兴趣的:(iOS,控件)