码迷,mamicode.com
首页 > 其他好文 > 详细

UIAlertController的一些简单实用方法

时间:2015-12-18 13:04:48      阅读:172      评论:0      收藏:0      [点我收藏+]

标签:

1.UIAlertController类似UIAlertView的最基本的使用方法。。直接上代码

技术分享

-(void)alertViewcontrol

{

    UIAlertController *alertControl = [UIAlertController alertControllerWithTitle:@"温馨提示" message:@"输入有误" preferredStyle:UIAlertControllerStyleAlert];

    UIAlertAction *cancelAction = [UIAlertAction actionWithTitle:@"ok" style:UIAlertActionStyleCancel handler:^(UIAlertAction * _Nonnull action) {

        NSLog(@"做点什么吧");

    }];

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

        NSLog(@"做点啥呢");

    }];

    [alertControl addAction:cancelAction];

    [alertControl addAction:confirmAction];

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

}

技术分享

-(void)alertViewcontrol1//添加textfield的方法

{

    UIAlertController *alertControl = [UIAlertController alertControllerWithTitle:@"温馨提示" message:@"输入点东西吧" preferredStyle:UIAlertControllerStyleAlert];

    UIAlertAction *cancelAction = [UIAlertAction actionWithTitle:@"ok" style:UIAlertActionStyleCancel handler:^(UIAlertAction * _Nonnull action) {

        NSLog(@"做点什么吧");

        [[NSNotificationCenter defaultCenter] removeObserver:self name:UITextFieldTextDidChangeNotification object:alertControl.textFields.firstObject];

    }];

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

        NSLog(@"做点啥呢");

    }];

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

        textField.text = @"可以在这里使用textfield的一些属性";

        [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(listeningTextField:) name:UITextFieldTextDidChangeNotification object:textField];

    }];

    

    [alertControl addAction:cancelAction];

    [alertControl addAction:confirmAction];

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

}

 

-(void)listeningTextField:(NSNotification *)notionfication//监听弹框上的输入内容的变化

{

    UITextField *thisTextField = notionfication.object;

    NSLog(@"%@",thisTextField.text);

}

 

UIAlertController的一些简单实用方法

标签:

原文地址:http://www.cnblogs.com/godlovexq/p/5056586.html

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