美文网首页
IOS UITextFiled 用中文键盘输英文出现空格的解决方

IOS UITextFiled 用中文键盘输英文出现空格的解决方

作者: NingSpeals | 来源:发表于2022-09-18 15:08 被阅读0次

获取textFiled的值的时候,英文,数字键盘是没有问题的,假设输入的是abcd,获取的值是abcd,但是如果使用中文键盘的时候,同样输入abcd,获取到的却是a b c d 字符之间出现了空格。

试了这方法

NSString *strUrl = [urlString stringByReplacingOccurrencesOfString:@" " withString:@""];

并没什么用
然后再利用这个方法

NSString *strUrl = [urlString  stringByTrimmingCharactersInSet:[NSCharacterSet whitespaceCharacterSet]];

也没什么用

最终找到此方法

NSString *strUrl = [[urlString componentsSeparatedByCharactersInSet:[NSCharacterSet whitespaceCharacterSet]] componentsJoinedByString:@""];

相关文章

网友评论

      本文标题:IOS UITextFiled 用中文键盘输英文出现空格的解决方

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