iOS 自己写的对话框中加入三个输入框

Posted careerman

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了iOS 自己写的对话框中加入三个输入框相关的知识,希望对你有一定的参考价值。

 

-(void)dialog:(NSString*)title okTitle:(NSString*)okTitle placeholder:(NSString*)placeholder finish:(UIAlertControllerSuccess)finish {

    UIAlertController* alert = [UIAlertController alertControllerWithTitle:title message:nil preferredStyle:UIAlertControllerStyleAlert];

    UIAlertAction* defaultAction = [UIAlertAction actionWithTitle:okTitle style:UIAlertActionStyleDefault handler:^(UIAlertAction * _Nonnull action) {

//        UITextField* edictTextField = alert.textFields[0];

//        DLOG(@"点击了ok %@", edictTextField.text);

        finish(1, alert.textFields);

    }];

    

    UIAlertAction* cancel = [UIAlertAction actionWithTitle:@"取消" style:UIAlertActionStyleDefault handler:^(UIAlertAction * _Nonnull action) {

        [alert dismissViewControllerAnimated:YES completion:nil];

        finish(0, alert.textFields);

//        UITextField* edictTextField = alert.textFields[0];

//        DLOG(@"点击了cancel %@", edictTextField.text);

    }];

    

    [alert addAction:defaultAction];

    [alert addAction:cancel];

    [alert addTextFieldWithConfigurationHandler:^(UITextField * _Nonnull textField) {

        textField.placeholder = @"输入1";

    }];

    [alert addTextFieldWithConfigurationHandler:^(UITextField * _Nonnull textField) {

        textField.placeholder = @"输入2";

    }];

    [alert addTextFieldWithConfigurationHandler:^(UITextField * _Nonnull textField) {

        textField.placeholder = @"输入3";

    }];

    

    [self presentViewController:alert animated:YES completion:nil];

}

 
 
 

以上是关于iOS 自己写的对话框中加入三个输入框的主要内容,如果未能解决你的问题,请参考以下文章

vs2008 mfc 如何在对话框中加入一个menu

在jsp中加入easyui-dialog作为弹出框,点击按钮无法弹出easyui-dialog框

VB 中关于自定义对话框Dialog 的问题……

iOS个人中心渐变动画微信对话框标签选择器自定义导航栏短信验证输入框等源码

在微信里输入框被虚拟键盘遮挡住了,怎么办

如何使用文件对话框将文件路径保存在字符串中,使用 Access VBA?