我正在UIAlertView
使用文本输入进行制作。
UIAlertView *alertView=[[UIAlertView alloc]initWithTitle:@"Save" message:@"Please Enter the Name of PDF" delegate:self cancelButtonTitle:@"Cancel" otherButtonTitles:@"OK", nil];
[alertView setAlertViewStyle:UIAlertViewStylePlainTextInput]
当 UITextField 为空时我想做什么我用委托函数禁用 OK 按钮
- (BOOL)alertViewShouldEnableFirstOtherButton:(UIAlertView *)alertView
{
return NO;
}
当用户开始在文本字段中写入内容时,确定按钮应启用。