Answers for "rotate imageview swift"

0

rotate image animated swift

extension UIView{
    func rotate() {
        let rotation : CABasicAnimation = CABasicAnimation(keyPath: "transform.rotation.z")
        rotation.toValue = NSNumber(value: Double.pi * 2)
        rotation.duration = 1
        rotation.isCumulative = true
        rotation.repeatCount = Float.greatestFiniteMagnitude
        self.layer.add(rotation, forKey: "rotationAnimation")
    }
}
Posted by: Guest on July-09-2020

Code answers related to "rotate imageview swift"

Code answers related to "Swift"

Browse Popular Code Answers by Language