美文网首页
UIAlertController文本框

UIAlertController文本框

作者: Flandreko | 来源:发表于2018-08-09 22:18 被阅读0次
    UIAlertController *alert = [UIAlertController alertControllerWithTitle:@"title" message:@"message" preferredStyle:UIAlertControllerStyleAlert];
    
    UIAlertAction *okButton = [UIAlertAction actionWithTitle:@"ok" style:UIAlertActionStyleDefault handler:^(UIAlertAction *Action) {
            UITextField *textField = alert.textFields.firstObject;//设置第一响应者
            NSLog(@"%@",textField.text);
    }];
    
    [alert addTextFieldWithConfigurationHandler:^(UITextField * _Nonnull textField) {
            textField.placeholder = @"string";
    }];
    [alert addAction:okButton];
    [self presentViewController:alert animated:YES completion:nil];
    

    相关文章

      网友评论

          本文标题:UIAlertController文本框

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