【问题标题】:Swift, when Core Animation finishedSwift,当核心动画完成时
【发布时间】:2015-11-25 10:26:31
【问题描述】:

我目前有一个 Swift 应用程序,可以将正方形的填充颜色从红色更改为绿色。我想发生的是,当动画完成后,我想再执行一些代码。

这是我的文件:

import UIKit

class PathViewController: TapToCloseViewController {

    override func viewDidAppear(animated: Bool) {
        super.viewDidAppear(animated)

        let tempView = UIView(frame: CGRectMake(0,0,100,100))
        tempView.layer.borderColor = UIColor.blackColor().CGColor
        tempView.layer.borderWidth = 2
        view.addSubview(tempView)

        let bounds = CGRect(x: 0, y: 0, width: 100, height: 100)

        // Create CAShapeLayerS
        let rectShape = CAShapeLayer()
        rectShape.bounds = bounds
        rectShape.position = tempView.center
        rectShape.cornerRadius = bounds.width / 2
        tempView.layer.addSublayer(rectShape)
        tempView.backgroundColor = UIColor.redColor()

        // Apply effects here

        // fill with white
        rectShape.fillColor = UIColor.greenColor().CGColor

        // 1
        // begin with a circle with a 50 points radius
        //let startShape = UIBezierPath(roundedRect: bounds, cornerRadius: 50).CGPath
        let sRect = CGRect(x:0, y:0, width: 0, height: bounds.height)
        let bpath = UIBezierPath(rect: sRect).CGPath

        // animation end with a large circle with 500 points radius
        let drect = CGRect(x:0, y:0, width: bounds.width, height: bounds.height)
        let endShape = UIBezierPath(rect: drect).CGPath

        //let endShape = UIBezierPath(roundedRect: CGRect(x: -450, y: -450, width: 1000, height: 1000), cornerRadius: 500).CGPath

        // set initial shape
        rectShape.path = bpath

        // 2
        // animate the `path`
        let animation = CABasicAnimation(keyPath: "path")
        animation.toValue = endShape
        animation.duration = 1 // duration is 1 sec
        // 3
        animation.timingFunction = CAMediaTimingFunction(name: kCAMediaTimingFunctionEaseOut) // animation curve is Ease Out 
        animation.fillMode = kCAFillModeBoth // keep to value after finishing
        animation.removedOnCompletion = false // don't remove after finishing
        // 4 
        rectShape.addAnimation(animation, forKey: animation.keyPath)

    }

}

如何检测动画何时停止?

【问题讨论】:

    标签: ios swift swift2 core-animation


    【解决方案1】:

    您可以将自己设置为动画的delegate

    let animation = CABasicAnimation(keyPath: "path")
    .....
    animation.delegate = self
    

    并随后实现以下方法:

    override func animationDidStop(anim: CAAnimation, finished flag: Bool)
    {
        NSLog("My beautiful animation has finished.")
    }
    

    【讨论】:

    • 在你给出这个答案之前,我已经编辑了我的代码。这确实对我有用,但是我已经用@YakivKovalskiy 回答编辑了我的代码
    • @iProgram 不管怎样,我很高兴它最终对你有用。
    • 谢谢,你的回答很有效,我仍然赞成。
    【解决方案2】:

    要动画颜色变化使用这个

      UIView.animateWithDuration(0.3, animations: { () -> Void in
        aView.backgroundColor = UIColor.redColor()
        }) { (completed) -> Void in
          //animation has completed
          //execute your code here
      }
    

    【讨论】:

    • 很明显发生颜色变化的地方。
    猜你喜欢
    • 1970-01-01
    • 2017-06-21
    • 1970-01-01
    • 1970-01-01
    • 2012-06-13
    • 1970-01-01
    • 2010-10-21
    • 2011-05-15
    • 1970-01-01
    相关资源
    最近更新 更多