答案 0 :(得分:1)
您可以根据需要设置alpha,这会在任何情况下都会产生透明度。
UIAlertController *alertController = [UIAlertController alertControllerWithTitle:@"Alert title" message:@"Alert message" preferredStyle:UIAlertControllerStyleAlert];
UIAlertAction* ok = [UIAlertAction actionWithTitle:@"OK" style:UIAlertActionStyleDefault handler:nil];
[alertController addAction:ok];
alertController.view.backgroundColor = [UIColor colorWithWhite:1 alpha:0.6];
[self presentViewController:alertController animated:YES completion:nil];