views:

541

answers:

1

Hi

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  A: 
view.alpha = 0.5; // Doesn't it work?
Vladimir
I think you mean view.alpha = 0.5; That should do it, along with all its subviews.
Ben Gottlieb
sorry twas a typo
Vladimir