我是 iPad 开发者的新手,
我正在我的 iPad 中制作注册表单,当用户单击提交按钮时,我想验证我的文本字段是否为空,如果它为空,则会显示警报No cannot be empty。
这是我的代码片段,但它不起作用,
宣言:
UITextField* noTxtbox= [[UITextField alloc] initWithFrame:CGRectMake(250, 200, 180, 50)];
noTxtbox.borderStyle = UITextBorderStyleRoundedRect;
[self.view addSubview:noTxtbox];
代码:
if ([noTxtbox.text isEqualToString:@""]) {
UIAlertView* alertView = [[UIAlertView alloc] initWithTitle:@"Enter your No !"
message:nil delegate:self
cancelButtonTitle:@"OK" otherButtonTitles:nil];
[alertView show];
[alertView release];
}
任何帮助将不胜感激。