Reputation: 4575
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.
Upvotes: 24
Views: 22758
Reputation: 170829
view.alpha = 0.5; // Doesn't it work?
Upvotes: 69