gpt4 book ai didi

ios - 如何增加 UIAlertAction 中的 Alpha?

转载 作者:行者123 更新时间:2023-11-29 01:20:07 25 4
gpt4 key购买 nike

当我使用 AlertControlAction 时,它会接管屏幕,直到您按下取消或诸如此类的东西。

我想知道有没有办法增加周围灰色部分的Alpha?

enter image description here

最佳答案

您可以根据需要设置 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];

关于ios - 如何增加 UIAlertAction 中的 Alpha?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34713994/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com