How do opaque alpha and the opacity of the background work together for a UIView and what are the differences between them?
How do opaque alpha and the opacity of the background work together for a
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
opaquemeans don’t draw anything underneath, even if you are transparent.The background color’s alpha only affects the background color’s transparency, not anything else drawn on the view.
alphaaffects everything drawn on the view.The opaque property can give you a speed increase – if you know that your view will never have transparency you can set this to
YESand when iOS renders your view it can make some performance optimisations and render it faster. If this is set toNOiOS will have to blend your view with the view underneath, even if it doesn’t happen to contain any transparency.The alpha will also affect the alpha of the backround color i.e. if the background color is 0.5 transparent and the alpha is also 0.5, this has the effect of making the background view’s alpha 0.25 (0.5 * 0.5).