码迷,mamicode.com
首页 > 移动开发 > 详细

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

时间:2015-10-31 23:07:25      阅读:884      评论:0      收藏:0      [点我收藏+]

标签:ios   提示框   

     我在之前写过一篇博客《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

实现效果如下:
技术分享


技术分享


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

版权声明:本文为博主原创文章,未经博主允许不得转载。

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

标签:ios   提示框   

原文地址:http://blog.csdn.net/chenyufeng1991/article/details/49537053

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!