美文网首页iOS 开发相关
UIAlertController 文本输入框使用

UIAlertController 文本输入框使用

作者: CreateTian | 来源:发表于2018-01-10 13:57 被阅读32次
    UIAlertController *alertController = [UIAlertController alertControllerWithTitle:@"请输入新标题" message:nil preferredStyle:UIAlertControllerStyleAlert];
        //增加确定按钮
        [alertController addAction:[UIAlertAction actionWithTitle:@"确定" style:UIAlertActionStyleDefault handler:^(UIAlertAction * _Nonnull action){
            //获取第1个输入框;
            UITextField *titleTextField = alertController.textFields.firstObject;
            NSLog(@"%@", titleTextField.text);
        }]];
        //增加取消按钮;
        [alertController addAction:[UIAlertAction actionWithTitle:@"取消" style:UIAlertActionStyleDefault handler:nil]];
        //定义第一个输入框;
        [alertController addTextFieldWithConfigurationHandler:^(UITextField * _Nonnull textField) {
            //textField.placeholder = @"请输入标题";
        }];
        [self presentViewController:alertController animated:true completion:nil];
    

    相关文章

      网友评论

        本文标题:UIAlertController 文本输入框使用

        本文链接:https://www.haomeiwen.com/subject/xpronxtx.html