如何将moda视图的背景设置为半透明?

发布于 2024-12-28 06:17:48 字数 285 浏览 0 评论 0原文

我通过点击按钮来调用 ModalViewController。我希望这个 ModalViewController 具有如下所示的半透明背景:

在此处输入图像描述

当我使用 [self.view setBackgroundColor:[UIColor清除颜色]];它给了我一个黑色背景:

在此处输入图像描述

I call my ModalViewController by tapping into a Button. I want this ModalViewController have a Translucent background like below:

enter image description here

when i use [self.view setBackgroundColor:[UIColor clearColor]]; it gives me a black background:

enter image description here

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

魄砕の薆 2025-01-04 06:17:48
    [modalView.view setBackgroundColor:[UIColor clearColor]];

或者如果你想降低不透明度

 [modalView.view setalpha:0.4]; //range is from 0(transparent) to 1(opaque)
    [modalView.view setBackgroundColor:[UIColor clearColor]];

or if you want to decrease the opacity

 [modalView.view setalpha:0.4]; //range is from 0(transparent) to 1(opaque)
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文