UIView and subviews - opacity

Viewed 22062

Is it possible to make a UIView (and any other subviews within it) set to an opacity of say 0.5 or whatever? Not sure if this is even possible, but want to ask.

1 Answers
view.alpha = 0.5; // Doesn't it work?
Related