在 xcode 中设置 alpha 背景图像 iphone 应用程序

发布于 2024-10-31 11:25:08 字数 364 浏览 1 评论 0原文

我得到了这个:

self.view.backgroundColor = [UIColor colorWithPatternImage:[UIImage imageNamed:@"bg.png" ]];

以及其他一些东西,例如文本字段和一个视图上的东西。

我想设置背景图像 Alpha,这样它就不会分散注意力。 但是当我这样做时:

self.view.alpha

它为所有对象设置它:-(

并且没有:

self.view.backgroundcolor.alpha

有什么想法吗?

I got this:

self.view.backgroundColor = [UIColor colorWithPatternImage:[UIImage imageNamed:@"bg.png" ]];

and some other stuff like textfields and stuff on one view.

I want to set the backgroundimages alpha so that it doesnt distract.
but when i do:

self.view.alpha

it sets it for all objects :-(

and there is no:

self.view.backgroundcolor.alpha

any idea?

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

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

发布评论

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

评论(2

烛影斜 2024-11-07 11:25:08

我已经解决了,这样您就不需要两个单独的视图。

    // Make sure your whole view is NOT transparent
    self.view.alpha = 1.0f;
    // Use UIColor to set alpha transparency of just the background view
    self.view.backgroundColor = [UIColor colorWithRed:0.0f green:0.0f blue:0.0f alpha:0.5f];

瞧!

I worked it out so that you don't need 2 separate views.

    // Make sure your whole view is NOT transparent
    self.view.alpha = 1.0f;
    // Use UIColor to set alpha transparency of just the background view
    self.view.backgroundColor = [UIColor colorWithRed:0.0f green:0.0f blue:0.0f alpha:0.5f];

Voila!

逆蝶 2024-11-07 11:25:08

这就是它的工作原理。为了达到您想要的效果,您需要两个单独的视图,一个仅包含背景(并设置了 alpha),另一个具有透明背景和 alpha 1.0 包含其他控件。

That's how it works. To achieve the effect you desire, you need two separate views, one that contains just the background (and has its alpha set), and one with a transparent background and alpha of 1.0 that contains the other controls.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文