我有一个 UITextField,如果用户在 UITextField 中没有输入任何内容,我想发送一个 UIAlertView。
问问题
424 次
1 回答
1
首先捕获输入:
NSString *text = myTextField.text;
然后测试空字符串并显示警报视图:
if (title == [NSNull null] || title.length == 0 ) {
UIAlertView *alertView = [[UIAlertView alloc] initWithTitle:title message:message delegate:delegate cancelButtonTitle:button1 otherButtonTitles:button2, nil];
[alertView show];
}
于 2010-06-20T15:08:53.710 回答