// 提示框
// 提示框的样式只有两种  中间 下方
UIAlertController *alertC = [UIAlertController alertControllerWithTitle:@"注意" message:@"你是傻逼" preferredStyle:UIAlertControllerStyleAlert];
// 添加按钮
// 参数1 : 标题
// 参数2 : 样式
// 参数3 : 当点击按钮回自动进入参数3的block中进行处理
UIAlertAction *alertA = [UIAlertAction actionWithTitle:@"确认" style:UIAlertActionStyleDefault handler:^(UIAlertAction * _Nonnull action) {
    // 点击确认改变背景颜色
    self.view.backgroundColor = [UIColor redColor];
}];
UIAlertAction *alertB = [UIAlertAction actionWithTitle:@"取消" style:UIAlertActionStyleDefault handler:^(UIAlertAction * _Nonnull action) {
    self.view.backgroundColor = [UIColor yellowColor];
}];
// 将按钮添加到提示框
[alertC addAction:alertA];
[alertC addAction:alertB];
// 弹出提示框
[self presentViewController:alertC animated:YES completion:^{
}];

}
iOS-UI -UIAlertAction-UIAlertController-提示框 警告-窗口弹出