Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Is it possible to set UIViewGroupOpacity (see documentation) for a single or set of views in an application? Thanks.
UIViewGroupOpacity
您可以通过设置来做到这一点
view.layer.shouldRasterize = YES; view.layer.rasterizationScale = [UIScreen mainScreen].scale;
在设置视图的 alpha 之前。