首页 > 代码库 > iOS UIAlertView添加输入框

iOS UIAlertView添加输入框

添加:

    UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"新建文件夹" message:@"" delegate:self cancelButtonTitle:@"取消" otherButtonTitles:@"确定", nil];    [alert setAlertViewStyle:UIAlertViewStylePlainTextInput];    UITextField *txtName = [alert textFieldAtIndex:0];    txtName.placeholder = @"请输入名称";    [alert show];

  

代理点击处理:

#pragma mark - 点击代理-(void)alertView:(UIAlertView *)alertView clickedButtonAtIndex:(NSInteger)buttonIndex{    if (buttonIndex == 1) {        UITextField *txt = [alertView textFieldAtIndex:0];        //获取txt内容即可            }    }

  

iOS UIAlertView添加输入框