UIAlertController,取代UIAlertView和UIActionSheet

来源:互联网 发布:安卓手机视频录像软件 编辑:程序博客网 时间:2024/05/22 03:07

UIAlertController *alert = [UIAlertControlleralertControllerWithTitle:@"提示"message:@"确认******" preferredStyle: UIAlertControllerStyleAlert];

    [alert addAction:[UIAlertActionactionWithTitle:@"否"style:UIAlertActionStyleDefaulthandler:^(UIAlertAction *_Nonnull action) {

        //点击按钮的响应事件;

    }]];


    [alert addAction:[UIAlertActionactionWithTitle:@"是"style:UIAlertActionStyleDefaulthandler:^(UIAlertAction *_Nonnull action) {

//点击按钮的响应事件;

    }]];

//弹出提示框;

    [selfpresentViewController:alert animated:truecompletion:nil];



阅读全文
0 0