ios9中的提示框

来源:互联网 发布:json作用 编辑:程序博客网 时间:2024/05/29 10:59

ios8以前苹果使用UIAlert来显示提示框,不过ios8后苹果使用全新的 UIAlertController    

UIAlertController *alert = [UIAlertControlleralertControllerWithTitle:@"提示"message:@"按钮被点击了"preferredStyle:UIAlertControllerStyleAlert];

    UIAlertAction* ok = [UIAlertActionactionWithTitle:@"确定"style:UIAlertActionStyleDefaulthandler:^(UIAlertAction *_Nonnull action) {

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

        NSLog(@"确定提示");

    }];

    UIAlertAction* cancle = [UIAlertActionactionWithTitle:@"取消"style:UIAlertActionStyleDefaulthandler:^(UIAlertAction *_Nonnull action) {

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

        NSLog(@"取消提示");

    }];

    [alert addAction:ok];

    [alert addAction:cancle];

    //弹出提示框;

    [selfpresentViewController:alertanimated:truecompletion:nil];

//preferredStyle可以改变提示框弹出的形式 UIAlertControllerStyleActionSheet代表从底部弹出


1 0