iOS开发:View的属性 hidden、alpha、opaque

区别:每个View都有hidden、alpha、opaque三个关于透明的属性;

官方文档的介绍:

1. @property(nonatomic) CGFloat alpha;

This value affects only the current view and does not affect any of its embedded subviews.Changes to this property can be animated.

2. @property(nonatomic, getter=isHidden) BOOL hidden;

The default value is NO. A hidden view disappears from its window and does not receive input events. It remains in its superview’s list of subviews, however, and participates in autoresizing as usual.Hiding a view with subviews has the effect of hiding those subviews and any view descendants they might have. This effect is implicit and does not alter the hidden state of the receiver’s descendants.

3. @property(nonatomic, getter=isOpaque) BOOL opaque;

This property provides a hint to the drawing system as to how it should treat the view.If set to YES, the drawing system treats the view as fully opaque, which allows the drawing system to optimize some drawing operations and improve performance. If set to NO, the drawing system composites the view normally with other content. The default value of this property is YES. You should always set the value of this property to NO if the view is fully or partially transparent.

1、alpha

    (1)这个属性只能影响当前视图,不连带影响子视图;

    (2)可以当做动画进行动态改变;

    (3)alpha = 0 时仍旧接收事件,但是这个操作比hidden开销大

2、hidden

    (1)默认为no,即为显示;

    (2)hidden的视图不再接收事件;

    (3)hidden的视图仍然在父视图的子视图列表里,而且响应自适应事件;

    (4)hidden的视图所有子视图也会被hidden而且它们的hidden属性不会变;

3、opaque

    (1)如果opaque设置为TRUE,那么视图会被当做全视图来对待,系统会重绘整个视图;

    (2)如果opaque设置为FALSE,那么系统会减少开销,以其中的内容来判定重绘额视图;

    (3)如果把视图的背景色设置为透明那个,那么opaque最好设置为FALSE,减少开销;

转载于:https://my.oschina.net/u/2532095/blog/849179

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值