0

In Swift 4.2 under iOS 12 beta 12 I would like to get the current position of a dot I have animated along a path in a CAKeyframeAnimation.

The code for the animation is this:

    @IBOutlet weak var dot: UIImageView!

    func animateDot() {        
        // Oval path.
        let ovalWidth = UIScreen.main.bounds.width * 0.7
        let ovalHeight = UIScreen.main.bounds.height * 0.75
        let ovalPath = UIBezierPath(ovalIn: CGRect(x: -ovalWidth / 2 , y: -ovalHeight / 2, width: ovalWidth, height: ovalHeight))
        let orbit = CAKeyframeAnimation(keyPath: "position")
        orbit.path = ovalPath.cgPath
        orbit.duration = CFTimeInterval(2.5)
        orbit.isAdditive = true
        orbit.repeatCount = 6
        orbit.calculationMode = kCAAnimationPaced
        orbit.rotationMode = kCAAnimationRotateAuto

        self.dot.layer.add(orbit, forKey: "orbit")
    }

My question is: once this is launched and running, how can I query the animation in Swift to get the current screen xy of the center of the dot?

Rob Tow
  • 111
  • 8

1 Answers1

0

I found that it is possible to query the active presentation layer associated with the dot to get the frame bounding the current position of the dot:

        if (self.dot.layer.presentation() != nil)
        {
            let dotLocation = self.dot.layer.presentation()?.frame
            os_log("self.dot.layer.presentation()?.frame.minX %12f", type: .debug, dotLocation!.minX)
            os_log("self.dot.layer.presentation()?.frame.maxX %12f", type: .debug, dotLocation!.maxX)
            os_log("self.dot.layer.presentation()?.frame.minY %12f", type: .debug, dotLocation!.minY)
            os_log("self.dot.layer.presentation()?.frame.maxY %12f", type: .debug, dotLocation!.maxY)

            var dotScreenLocation: CGPoint = CGPoint(x: 0, y: 0)
            dotScreenLocation.x = dotLocation!.minX + ((dotLocation!.maxX - dotLocation!.minX) / 2)
            dotScreenLocation.y = dotLocation!.minY + ((dotLocation!.maxY - dotLocation!.minY) / 2)
            os_log("self.dot.layer.presentation()?.frame center x,y %12f,%12f", type: .debug, dotScreenLocation.x, dotScreenLocation.y)
}
Rob Tow
  • 111
  • 8