首页 > 代码库 > 如果AlertView输入框为空,则禁止点击确定按钮

如果AlertView输入框为空,则禁止点击确定按钮

//UIAlertView的代理方法(创建UIAlertView之后,copy此代理方法即可)

-  (BOOL)alertViewShouldEnableFirstOtherButton:(UIAlertView *)alertView{

  //1.取出输入框中的文字

  NSString *text = [alertView textFieldAtIndex:0].text;

  //2.如果输入框为空

  if(![text length]){

    //不可点击

    return NO;

  }else{

    return YES;

  }

}