clipsToBounds/masksToBounds的区别

本文深入探讨了iOS开发中UIView的clipsToBounds属性及CALayer的masksToBounds属性的作用原理。通过具体代码示例解释了这两个属性如何帮助开发者控制视图及其子视图的显示范围,特别是当子视图超出父视图边界时的行为。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >


clipsToBounds -> UIView : 指视图上的子视图,如果超出父视图的部分就截取掉,


masksToBounds -> CALayer : 指视图的图层上的子图层,如果超出父图层的部分就截取掉



clipsToBounds执行时调用自己涂层的maskToBounds方法


-(BOOL)[UIView(Rendering) clipsToBounds]
 +0 3091938a 55      pushl  %ebp
 +1 3091938b 89e5     movl  %esp,%ebp
 +3 3091938d e800000000    calll  0x30919392
 +8 30919392 59      popl  %ecx
 +9 30919393 8b4508     movl  0x08(%ebp),%eax
 +12 30919396 8b5004     movl  0x04(%eax),%edx    (CALayer)_layer
 +15 30919399 8b8186cb1301   movl  0x0113cb86(%ecx),%eax   masksToBounds
 +21 3091939f 89450c     movl  %eax,0x0c(%ebp)
 +24 309193a2 895508     movl  %edx,0x08(%ebp)
 +27 309193a5 c9      leave
 +28 309193a6 e92e211801    jmpl  0x31a9b4d9
为下列代码实现可暂停效果: import UIKit class ViewController: UIViewController { private let radarAnimation = "radarAnimation" private var animationLayer: CALayer? private var animationGroup: CAAnimationGroup? private var opBtn: UIButton! override func viewDidLoad() { super.viewDidLoad() let first = makeRadarAnimation(showRect: CGRect(x: 120, y: 100, width: 100, height: 100), isRound: true) view.layer.addSublayer(first) opBtn = UIButton(frame: CGRect(x: 100, y: 450, width: 80, height: 80)) opBtn.backgroundColor = UIColor.red opBtn.clipsToBounds = true opBtn.setTitle("Hsu", for: .normal) opBtn.layer.cornerRadius = 10 view.addSubview(opBtn) let second = makeRadarAnimation(showRect: opBtn.frame, isRound: false) view.layer.insertSublayer(second, below: opBtn.layer) } @IBAction func startAction(_ sender: UIButton) { animationLayer?.add(animationGroup!, forKey: radarAnimation) } @IBAction func stopAction(_ sender: UIButton) { animationLayer?.removeAnimation(forKey: radarAnimation) } private func makeRadarAnimation(showRect: CGRect, isRound: Bool) -> CALayer { // 1. 一个动态波 let shapeLayer = CAShapeLayer() shapeLayer.frame = showRect // showRect 最大内切圆 if isRound { shapeLayer.path = UIBezierPath(ovalIn: CGRect(x: 0, y: 0, width: showRect.width, height: showRect.height)).cgPath } else { // 矩形 shapeLayer.path = UIBezierPath(roundedRect: CGRect(x: 0, y: 0, width: showRect.width, height: showRect.height), cornerRadius: 10).cgPath } shapeLayer.fillColor = UIColor.orange.cgColor // 默认初始颜色透明度 shapeLayer.opacity = 0.0 animationLayer = shapeLayer // 2. 需要重复的动态波,即创建副本 let replicator = CAReplicatorLayer() replicator.frame = shapeLayer.bounds replicator.instanceCount = 4 replicator.instanceDelay = 1.0 replicator.addSublayer(shapeLayer) // 3. 创建动画组 let opacityAnimation = CABasicAnimation(keyPath: "opacity") opacityAnimation.fromValue = NSNumber(floatLiteral: 1.0) // 开始透明度 opacityAnimation.toValue = NSNumber(floatLiteral: 0) // 结束时透明底 let scaleAnimation = CABasicAnimation(keyPath: "transform") if isRound { scaleAnimation.fromValue = NSValue.init(caTransform3D: CATransform3DScale(CATransform3DIdentity, 0, 0, 0)) // 缩放起始大小 } else { scaleAnimation.fromValue = NSValue.init(caTransform3D: CATransform3DScale(CATransform3DIdentity, 1.0, 1.0, 0)) // 缩放起始大小 } scaleAnimation.toValue = NSValue.init(caTransform3D: CATransform3DScale(CATransform3DIdentity, 1.5, 1.5, 0)) // 缩放结束大小 let animationGroup = CAAnimationGroup() animationGroup.animations = [opacityAnimation, scaleAnimation] animationGroup.duration = 3.0 // 动画执行时间 animationGroup.repeatCount = HUGE // 最大重复 animationGroup.autoreverses = false self.animationGroup = animationGroup shapeLayer.add(animationGroup, forKey: radarAnimation) return replicator } }
06-03
为了实现可暂停效果,我们需要记录动画的当前状态并在暂停时保存状态,在恢复时重新加载状态。 首先,我们需要添加一个布尔类型的变量 `isPaused` 来记录动画是否被暂停: ```swift private var isPaused = false ``` 然后,我们需要修改 `startAction` 和 `stopAction` 方法来支持暂停和恢复动画: ```swift @IBAction func startAction(_ sender: UIButton) { if isPaused { // 如果动画已经被暂停,则恢复动画 animationLayer?.speed = 1.0 isPaused = false } else { // 否则开始动画 animationLayer?.add(animationGroup!, forKey: radarAnimation) } } @IBAction func stopAction(_ sender: UIButton) { if let animationLayer = animationLayer { // 保存动画状态 let pausedTime = animationLayer.convertTime(CACurrentMediaTime(), from: nil) animationLayer.speed = 0.0 animationLayer.timeOffset = pausedTime isPaused = true } } ``` 在 `startAction` 方法中,我们检查动画是否已经被暂停。如果已经被暂停,则恢复动画的速度,并将 `isPaused` 设置为 `false`。否则,开始动画。 在 `stopAction` 方法中,我们保存动画的时间偏移量和速度,并将 `isPaused` 设置为 `true`。 最后,我们需要在 `viewDidLoad` 方法中添加一个触摸手势来暂停动画: ```swift let tapGesture = UITapGestureRecognizer(target: self, action: #selector(handleTapGesture(_:))) view.addGestureRecognizer(tapGesture) ``` 并且实现 `handleTapGesture` 方法: ```swift @objc private func handleTapGesture(_ gesture: UITapGestureRecognizer) { if !isPaused { stopAction(opBtn) } } ``` 这个方法会在用户触摸屏幕时被调用,并停止动画。如果动画已经被暂停,则不做任何事情。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值