如何验证UITextField的内容?

时间:2011-04-18 02:51:54

标签: iphone ios validation uitextfield symbols

当我将文本从UITeField发布到PHP时,如果我留下空格或使用奇怪的符号(即!,@,#,^,&,{} ......),我会遇到问题。)

我可以阻止IBaction不要将这个无用的文本发送到服务器吗?

- (IBAction)sendeTextToServer:(id)sender{
   if(textfield.text has any space or other symbols inside){
       //Block the text send to server
   }
   else
      //Send the text to server to do something.
}

如何验证UITextField的内容?

1 个答案:

答案 0 :(得分:1)

使用正则表达式!我在许多项目中使用了RegexKitLite并取得了很大的成功。

编辑:这是how to use it上另一个答案的链接。