美文网首页
正确使用UITextfiled的代理方法shouldChange

正确使用UITextfiled的代理方法shouldChange

作者: _菩提本无树_ | 来源:发表于2023-09-17 17:38 被阅读0次
- (BOOL)textField:(UITextField *)textField shouldChangeCharactersInRange:(NSRange)range replacementString:(NSString *)string{
    NSMutableString *str = [NSMutableString stringWithString:textField.text];
    [str replaceCharactersInRange:range withString:string];
    // str是操作完后的字符串
}

相关文章

网友评论

      本文标题:正确使用UITextfiled的代理方法shouldChange

      本文链接:https://www.haomeiwen.com/subject/lsewvdtx.html