Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a UIView with an alpha of 0.5 which I add as a subview to my primary view in order to gray-out everything else. I want to add an additional UIView to this gray UIView as a subview - the problem is that when I do this, my newly-added subview is also partially transparent.

Is there any way to make a subview "ignore" the alpha value of its superview and be itself fully opaque?

share|improve this question

5 Answers

up vote 4 down vote accepted

No, not really. What you want is to take your overlay view, and make it just have a clear background color. As a subview of that new overlay place your view that will grey things out. And as a sibling view to that put your view you want to be opaque.

[OpaqueView] [DimmingView]
     |             |
      [OverlayView]
share|improve this answer
9  
Even simpler: I just use this as the background color: UIColor *bg = [UIColor colorWithRed:0.0 green:0.0 blue:0.0 alpha:0.5];, so I don't have to add an additional overlay view. – MusiGenesis May 24 '11 at 14:55
1  
Thats what I get for answering questions before my coffee. This is the correct answer. – Joshua Weinberg May 24 '11 at 15:07
@MusiGenesis : love you. – Ahsan May 10 '12 at 22:27

Set the UIView background color's alpha not it's alpha directly.

UIView *view.backgroundColor=[[UIColor blackColor] colorWithAlphaComponent:.6];

It's not the same as:

UIView *view.backgroundColor=[UIColor blackColor];    
view.alpha=.6;
share|improve this answer
2  
Neat little trick, learn something new every day. – kyleturner Jan 24 at 9:38

No, any view will inherit the opacity of its parent.

share|improve this answer
I normally have a dimmer view specifically for dimming out elements (for instance when using a textField) but this is below anything I want to show as enabled, but above anything I want disabled. – Simon Lee May 24 '11 at 14:44

Don't put it inside the semi-transparent view. Make it a sibling to semi-transparent view and put it over it using z-ordering.

share|improve this answer

This will only work if you have any image on the background.

Instead of reducing the alpha of UIView, add an UIImageView on that view and then reduce the alpha of the UIImageView.

now add your subviews on the UIView.

your subviews will not take the alpha property anymore.. :)

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.