diff --git a/AnimationRestoration/Base.lproj/Main.storyboard b/AnimationRestoration/Base.lproj/Main.storyboard index 273375f..3a1640e 100644 --- a/AnimationRestoration/Base.lproj/Main.storyboard +++ b/AnimationRestoration/Base.lproj/Main.storyboard @@ -1,14 +1,56 @@ - - + + + + + - + + + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + @@ -16,11 +58,81 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/AnimationRestoration/ViewController.swift b/AnimationRestoration/ViewController.swift index 1b2ca7d..ffec316 100644 --- a/AnimationRestoration/ViewController.swift +++ b/AnimationRestoration/ViewController.swift @@ -9,17 +9,45 @@ import UIKit class ViewController: UIViewController { + + @IBOutlet weak var viewA: UIView! + @IBOutlet weak var viewB: UIView! + private var didAddAnimations = false - override func viewDidLoad() { - super.viewDidLoad() - // Do any additional setup after loading the view, typically from a nib. + override func viewDidAppear(_ animated: Bool) { + + super.viewDidAppear(animated) + addAnimationsIfPossible() } - - override func didReceiveMemoryWarning() { - super.didReceiveMemoryWarning() - // Dispose of any resources that can be recreated. + + private func addAnimationsIfPossible() { + guard !didAddAnimations else { return } + + let rotationA = CABasicAnimation.makeInfiniteRotation() + viewA.layer.add(rotationA, forKey: "rotationA") + + let rotationB = CABasicAnimation.makeInfiniteRotation() + viewB.layer.add(rotationB, forKey: "rotationB") + + didAddAnimations = true + } + + override func didMove(toParentViewController parent: UIViewController?) { + super.didMove(toParentViewController: parent) + } +} + +extension CABasicAnimation { + + static func makeInfiniteRotation() -> CABasicAnimation { + + let rotation : CABasicAnimation = CABasicAnimation(keyPath: "transform.rotation.z") + rotation.fromValue = 0 + rotation.toValue = NSNumber(value: Double.pi * 2) + rotation.duration = 2 + rotation.isCumulative = true + rotation.repeatCount = Float.greatestFiniteMagnitude + return rotation } - - }