UIAlertController iOS8弹出菜单用法

 

一、基本使用

 使用UIAlertController 需三步:

1.创建控制器并指定样式和参数.。

2.添加按钮addAction。

3.模态推出(底部或中间弹出)。

 

    // 1. 创建alert控制器并指定style:UIAlertControllerStyleAlert||UIAlertControllerStyleActionSheet 本文以   Alert为例展示

    UIAlertController *alertController = [UIAlertController alertControllerWithTitle:@"确定要操作?" message:@"操作后不可恢复" preferredStyle:UIAlertControllerStyleAlert];

    

    // 2. 添加选项

    [alertController addAction: [UIAlertAction actionWithTitle:@"取消" style:UIAlertActionStyleCancel handler:^(UIAlertAction *action) {

        NSLog(@"点击了取消");

    }]];

    [alertController addAction: [UIAlertAction actionWithTitle:@"确定" style:UIAlertActionStyleDefault handler:^(UIAlertAction *action) {

        NSLog(@"点击了确定");

    }]];

    // 3. 模态退出控制器

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


*如果选项添加超过两个,会竖向排列。

        

 

二、(举个栗子)可添加输入框,可用作输入密码等功能,也可添加多个输入框(如用户名和密码)。

    效果图:

  *要对输入框中的文字进行监测,密码超过6位确定按钮才可点。

因为要对AlertController的成员进行监听,并且操作确定按钮,所以提两个全局变量。

    UIAlertAction       * _otherAction;    //确定按钮

    UIAlertController   * _alertController;    //   控制器

 

-(void)buttonClinck{

    UIAlertController *alertController = [UIAlertController alertControllerWithTitle:@"输入密码" message:@"密码为开机密码" preferredStyle:UIAlertControllerStyleAlert];

    _alertController = alertController;

        [alertController addTextFieldWithConfigurationHandler:^(UITextField *textField) {

        textField.secureTextEntry = YES;

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

    }];

        __weak actionsheetController *Wself  = self;

    //blcok中使用self最好用copy弱指针self,虽然有些block是局部变量(self并不包含block),但为保险,告诫自己都用。

    [alertController addAction: [UIAlertAction actionWithTitle:@"取消" style:UIAlertActionStyleCancel handler:^(UIAlertAction *action) {

        [Wself remoteNotif];

    }]];

        UIAlertAction *otherAction = [UIAlertAction actionWithTitle:@"确定" style:UIAlertActionStyleDefault handler:^(UIAlertAction *action) {

        [Wself remoteNotif];

    }];

        [alertController addAction: otherAction];

    otherAction.enabled = NO;

    _otherAction = otherAction;

    //先将确定按钮设为不可点,在通知中当输入的密码大于n位数可以点

    //推出控制器

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

}

-(void)remoteNotif{

    [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(handleTextFieldTextDidChangeNotification:) name:UITextFieldTextDidChangeNotification object:_alertController.textFields.firstObject];

}

-(void)handleTextFieldTextDidChangeNotification:(NSNotification *)notification{

    UITextField *textFile = notification.object;

    _otherAction.enabled = textFile.text.length>5?YES:NO;

}

 至此完结,注意添加监听后要移除。    

文章借鉴网络,怕忘了自己总结的。不对的地方,请提出。

转载于:https://my.oschina.net/dmxs/blog/692902

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值