在 xcode 中设置 alpha 背景图像 iphone 应用程序
我得到了这个:
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我已经解决了,这样您就不需要两个单独的视图。
瞧!
I worked it out so that you don't need 2 separate views.
Voila!
这就是它的工作原理。为了达到您想要的效果,您需要两个单独的视图,一个仅包含背景(并设置了
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 andalpha
of 1.0 that contains the other controls.