美文网首页
iOS UIAlertController 提示框

iOS UIAlertController 提示框

作者: 路边的风景呢 | 来源:发表于2017-06-19 11:04 被阅读74次

    这个是最新的提示框的使用 ,用以前的方法 总是报⚠️ 所以 就用这个了 

    //创建sheet提示框,提示选择相机还是相册

    UIAlertController * alert = [UIAlertController alertControllerWithTitle:@"请选择打开方式" message:nil preferredStyle:UIAlertControllerStyleActionSheet];

    //这里写你们的需求

    UIAlertAction * camera = [UIAlertAction actionWithTitle:@"相机" style:UIAlertActionStyleDefault handler:^(UIAlertAction * _Nonnull action) {

    }];

    //相册选项

    UIAlertAction * photo = [UIAlertAction actionWithTitle:@"相册" style:UIAlertActionStyleDefault handler:^(UIAlertAction * _Nonnull action) {

    //这里写你们的需求

    }];

    //取消按钮

    UIAlertAction * cancel = [UIAlertAction actionWithTitle:@"取消" style:UIAlertActionStyleCancel handler:^(UIAlertAction * _Nonnull action) {

    [self dismissViewControllerAnimated:YES completion:nil];

    }];

    //添加各个按钮事件

    [alert addAction:camera];

    [alert addAction:photo];

    [alert addAction:cancel];

    //弹出sheet提示框

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

    相关文章

      网友评论

          本文标题:iOS UIAlertController 提示框

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