UIAlertController的使用

基本使用
    UIAlertController *alertController = [UIAlertController alertControllerWithTitle:@"标题" message:@"标题的提示信息" preferredStyle:UIAlertControllerStyleAlert];
    [alertController addAction:[UIAlertAction actionWithTitle:@"取消" style:UIAlertActionStyleCancel handler:^(UIAlertAction * _Nonnull action) {
        
    }]];
    [alertController addAction:[UIAlertAction actionWithTitle:@"确定" style:UIAlertActionStyleDefault handler:^(UIAlertAction * _Nonnull action) {
        
    }]];
    [self presentViewController:alertController animated:YES completion:nil];
基本使用讲解地址

点击跳转

改变UIAlertController的标题、内容的字体和颜色

点击跳转

你可能感兴趣的:(UIAlertController的使用)