UIView中的这三个属性用的比较多,尤其是Alpha和Opaque之间有的时候不是很好分别,稍微整理下:
Alpha(不透明度)
alpha是不透明度,属性为浮点类型的值,取值范围从0到1.0,表示从完全透明到完全不透明,其特性有当前UIView的alpha值会被其所有subview继承。alpha值会影响到UIView跟其所有subview,alpha具有动画效果。当alpha为0时,跟hidden为YES时效果一样,但是alpha主要用于实现隐藏的动画效果,在动画块中将hidden设置为YES没有动画效果。
8UIView *view=[[UIView alloc]initWithFrame:CGRectMake(30, 100, CGRectGetWidth(self.view.bounds)-60, 150)];
[view setBackgroundColor:[UIColor redColor]];
[view setAlpha:0.5];
[self.view addSubview:view];
UIView *childView=[[UIView alloc]initWithFrame:CGRectMake(20, 30, 100, 80)];
[childView setBackgroundColor:[UIColor blueColor]];
[view addSubview:childView];
设置backgroundColor的alpha值只影响当前UIView的背景,并不会影响其所有subview。Clear Color就是backgroundColor的alpha为1.0。alpha值会影响backgroundColor最终的alpha,假设UIView的alpha为0.8,backgroundColor的alpha为0.5,那么backgroundColor最终的alpha为0.4(0.8*0.5)。
Hidden(隐藏)
Hidden表示UIView是否隐藏,Hidden设置为YES表示当前UIView的所有subview也会被隐藏,忽略subview的hidden属性。Hidden只要设置为YES,所有的subview都会隐藏。UIView隐藏之后也会从当前的响应者事件中移除。
Opaque
opaque也是表示当前的UIView的不透明度,设置是否之后对于UIView的显示并没有什么影响,官方文档的意思简单点说就是opaque默认为YES,如果alpha小于1,那么应该设置opaque设置为NO,但是如果alpha为1,opaque设置为NO,产生的后果是不可预料的~
1 .This property provides a hint to the drawing systemasto how it should treat the view. Ifsetto YES, the drawing system treats the viewasfully opaque, which allows the drawing system to optimize some drawing operations and improve performance. Ifsetto NO, the drawing system composites the view normally with other content. Thedefaultvalue ofthispropertyisYES.
2
3.An opaque viewisexpected to fill its bounds with entirely opaque content—thatis, the content should have an alpha value of 1.0. If the viewisopaque and either does not fill its bounds or contains wholly or partially transparent content, the results are unpredictable. You should alwayssetthe value ofthisproperty to NOifthe viewisfully or partially transparent.
4
1.This property provides a hint to the drawing systemasto how it should treat the view. Ifsetto YES, the drawing system treats the viewasfully opaque, which allows the drawing system to optimize some drawing operations and improve performance. Ifsetto NO, the drawing system composites the view normally with other content. Thedefaultvalue ofthispropertyisYES.
2. An opaque viewisexpected to fill its bounds with entirely opaque content—thatis, the content should have an alpha value of 1.0. If the viewisopaque and either does not fill its bounds or contains wholly or partially transparent content, the results are unpredictable. You should alwayssetthe value ofthisproperty to NOifthe viewisfully or partially transparent.
3.You only need toseta valueforthe opaque propertyforsubclasses of UIView that draw their own contentusingthe drawRect: method. The opaque property has no effectforsystem provided classes suchasUIButton, UILabel, UITableViewCell, etc.
如果了解opaque,需要点屏幕绘制的知识,屏幕上的每个像素点都是通过RGBA值(Red、Green、Blue三原色再配上Alpha透明度)表示的,当纹理(UIView在绘图系统中对应的表示项)出现重叠时,GPU会按照Result = Source + Destination * (1 - SourceAlpha)公式计算重叠部分的像素。
Result是结果RGB值,Source为处在重叠顶部纹理的RGB值,Destination为处在重叠底部纹理的RGB值。
当SourceAlpha为1时,绘图系统认为下面的颜色全部被遮盖住了,Result=Source,如果Source的Alpha不为0,上下层颜色就会进行合成,所以opaque默认设置YES,提升绘制性能,如果开发中UIView是不透明的,opaque设置为YES, 如果opaque设置NO,那么Alpha应该小于1.
参考资料:https://developer.apple.com/library/ios/documentation/UIKit/Reference/UIView_Class/index.html#//apple_ref/occ/instp/UIView/opaque
网友评论