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

获取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 用中文键盘输英文出现空格的解决方案)