如何实现UITextView在光标之后插入(Insert)字符和覆盖(Replace)光标之后的一个字符的模式转换

1、UITextView创建初始化,设置相关属性,添加需要的方法

2、设置插入Insert和覆盖Replace的转换按钮

相关代码:

-(void)btnDown:(UIButton *)btn{

    if (_isInsert==YES) {

        _isInsert=NO;

        [navBtn setTitle:@"Replace"forState:UIControlStateNormal];

    }else{

        _isInsert=YES;

        [navBtn setTitle:@"Insert"forState:UIControlStateNormal];

    }

}

3、用BooL值做判断是插入Insert还是覆盖Replace,当是插入Insert时不做任何处理(本身输入就是酱紫的),当是覆盖Replace时,在下边的方法中做对应处理

相关代码:

- (void)textViewDidChange:(UITextView *)textView {

    if (_isInsert==NO) {

        NSRange range;

        range.location=_mainTextView.selectedRange.location;

        range.length=1;

        NSString *changeText=[NSStringstringWithFormat:@"%@",_mainTextView.text];

        NSString *tailStr=[changeTextsubstringFromIndex:range.location];

        if (tailStr.length==0) {

            return;

        }else{

            changeText=[changeText stringByReplacingCharactersInRange:range withString:@""];

            _mainTextView.text=changeText;

        }

        range.location=range.location;

        range.length=0;

        _mainTextView.selectedRange=range;

    }

}

为了有区分效果:

4、当是插入Insert时为普通光标,当是覆盖Replace时将光标覆盖在要替换的字符上
   实现方法:添加一个闪烁的半透明UIImageView,当是插入Insert时让其隐藏,当是覆盖Replace时让其显示并跟着光标位置实时移动,光标变成与背景色一样,变回插入Insert时再隐藏UIImageView并将光标颜色变回
相关代码:
4.1设置实例变量

UIImageView *_flashingCursor;

4.2创建初始化_flashingCursor,设置相关属性,调用闪烁方法,起初为插入Insert时将其隐藏Replace  

[_flashingCursor.layeraddAnimation:[CABasicAnimationopacityForever_Animation:0.5]forKey:nil];

闪烁效果的demo(GitHub上面的)

点击打开链接

在两个方法中做相关操作

- (void)textViewDidChangeSelection:(UITextView *)textView{

    _flashingCursor.frame=CGRectMake([textViewcaretRectForPosition:textView.selectedTextRange.start].origin.x, [textView caretRectForPosition:textView.selectedTextRange.start].origin.y,_flashingCursor.frame.size.width,_flashingCursor.frame.size.height);

}

- (BOOL)textViewShouldBeginEditing:(UITextView *)textView{

    if (_isInsert==NO) {

        _flashingCursor.frame=CGRectMake([textViewcaretRectForPosition:textView.selectedTextRange.start].origin.x, [textView caretRectForPosition:textView.selectedTextRange.start].origin.y,_flashingCursor.frame.size.width,_flashingCursor.frame.size.height);

        _flashingCursor.hidden=NO;

    }else{

        _flashingCursor.hidden=YES;

    }

}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值