• Toggle Slow Animations


    Toggle Slow Animations

     

    iOS Simulator has a feature that slows animations, you can toggle it either by pressing ⌘T or choosing Debug > Toggle Slow Animations in Frontmost App. It’s very useful, but what if we want to do the same on device? It’s easy, fast and simple.

    CALayer has a property called speed, which is a time multiplier. This means that if we have an animation with a duration of 1 second, and set the layer’s speed to 2, it’ll take just 0.5 seconds to finish. The best thing about it is that it’s related to the parent layer. So when we change the speed of a particular CALayer, every child layer will be affected. So, if we change UIWindow layer speed, every CALayer in our application will perform animations with that custom speed value. That leaves us with this two extensions:

    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    
    extension UIWindow {
    
        var slowAnimationsEnabled: Bool {
            get {
                return layer.speed != 1
            }
            set {
                layer.speed = newValue ? 0.2 : 1
            }
        }
    }
    
    extension UIApplication {
    
        func setSlowAnimationsEnabled(enabled: Bool) {
            windows.map({ window in (window as? UIWindow)?.slowAnimationsEnabled = enabled })
        }
    }
    

    And you can call it in both ways:

    1
    2
    
    UIApplication.sharedApplication().keyWindow?.slowAnimationsEnabled = true
    UIApplication.sharedApplication().setSlowAnimationsEnabled(true)
    

    You can go further and expose this to your testers, through iOS Settings Bundle or a fancy shake gesture. Pretty handy!

  • 相关阅读:
    OpenCascade Primitives BRep-Cone
    OpenCascade Primitives BRep-Torus
    OpenCascade Primitives BRep-Cylinder
    OpenCascade Primitives BRep
    OpenCascade Primitives BRep
    Topology and Geometry in OpenCascade-Topology
    Topology and Geometry in OpenCascade-Face
    Topology and Geometry in OpenCascade-Edge
    Topology and Geometry in OpenCascade-Vertex
    PCurve
  • 原文地址:https://www.cnblogs.com/ioriwellings/p/6590229.html
Copyright © 2020-2023  润新知