当我将文本从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的内容?