mootymoots
mootymoots

Reputation: 4575

UIView and subviews - opacity

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

Answers (1)

Vladimir
Vladimir

Reputation: 170829

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

Upvotes: 69

Related Questions