iOS   发布时间:2022-03-31  发布网站:大佬教程  code.js-code.com
大佬教程收集整理的这篇文章主要介绍了ios – 在编辑UITextField文本时,如何实时格式化?大佬教程大佬觉得挺不错的,现在分享给大家,也给大家做个参考。
输入时如何更改UITextField文本的值?

换句话说:

当我输入1时应显示1

当我键入10它应该显示10

当我输入100它应该显示100

当我键入1000,它应该显示1000

你能给任何想法吗?

解决方法

向文本字段控件@L_944_5@“textFieldDidChange”通知方法.
[textField addTarget:self
              action:@SELEctor(textFieldDidChange:)
    forControlEvents:UIControlEventEdiTingChanged];


-(void)textFieldDidChange:(UITextField *)theTextField
{
    NSLog(@"text changed: %@",theTextField.text);

    NSString *textFieldText = [theTextField.text StringByreplacingoccurrencesOfString:@"," withString:@""];

    NSnumberFormatter *formatter = [[NSnumberFormatter alloc] init];
    [formatter setnumberStyle:NSnumberFormatterdecimalStyle];
    NSString *formattedOutput = [formatter StringFromnumber:[NSnumber numberWithInt:[textFieldText IntegerValue]]];
    textField.text=formattedOutput;            
}

大佬总结

以上是大佬教程为你收集整理的ios – 在编辑UITextField文本时,如何实时格式化?全部内容,希望文章能够帮你解决ios – 在编辑UITextField文本时,如何实时格式化?所遇到的程序开发问题。

如果觉得大佬教程网站内容还不错,欢迎将大佬教程推荐给程序员好友。

本图文内容来源于网友网络收集整理提供,作为学习参考使用,版权属于原作者。
如您有任何意见或建议可联系处理。小编QQ:384754419,请注明来意。