iOS9使用提示框进行文本输入的正确实现方式

     我在之前写过一篇博客《iOS9使用提示框的正确实现方式》,主要讲了如何使用UIAlertController替换UIAlertView进行提示框的实现。今天我们将会来实现一下在提示框中如何进行文本输入。该功能可以让用户进行密码确认等功能。

实现代码如下:

#import "SecondViewController.h"
#import "AppDelegate.h"

@interface SecondViewController ()

@end

@implementation SecondViewController

- (void)viewDidLoad {
  [super viewDidLoad];
  
}

- (IBAction)Click:(id)sender {
  
  UIAlertController *alertController = [UIAlertController alertControllerWithTitle:@"提示" message:@"请输入个人信息" preferredStyle:UIAlertControllerStyleAlert];
  //增加确定按钮;
  [alertController addAction:[UIAlertAction actionWithTitle:@"确定" style:UIAlertActionStyleDefault handler:^(UIAlertAction * _Nonnull action) {
    //获取第1个输入框;
    UITextField *userNameTextField = alertController.textFields.firstObject;
    
    //获取第2个输入框;
    UITextField *passwordTextField = alertController.textFields.lastObject;
    
    NSLog(@"用户名 = %@,密码 = %@",userNameTextField.text,passwordTextField.text);
    
  }]];
  
  //增加取消按钮;
  [alertController addAction:[UIAlertAction actionWithTitle:@"取消" style:UIAlertActionStyleDefault handler:nil]];
  
  //定义第一个输入框;
  [alertController addTextFieldWithConfigurationHandler:^(UITextField * _Nonnull textField) {
    textField.placeholder = @"请输入用户名";
  }];
  //定义第二个输入框;
  [alertController addTextFieldWithConfigurationHandler:^(UITextField * _Nonnull textField) {
    textField.placeholder = @"请输入密码";
  }];
  
  [self presentViewController:alertController animated:true completion:nil];
  
}



@end

实现效果如下:
iOS9使用提示框进行文本输入的正确实现方式_第1张图片



     目前我们应该尽量使用UIAlertController来替换UIAlertView的使用,这样来获取用户输入是不是很方便呢?



github主页:https://github.com/chenyufeng1991  。欢迎大家访问!

你可能感兴趣的:(ios,提示框)