completionSpeed
The speed of the transition animation.
Declaration
var completionSpeed: CGFloat { get set }Discussion
The default value of this property is 1.0, which yields an animation that proceeds in real time. You typically change this value to speed up or slow down the animation at specific points in the transition. For example, you might change the animation speed at the end of a transition or when canceling it, in which case you would set the speed when you stop tracking user events and are about to call the cancel() or finish() method.
The speed acts as a multiplier to the current animation speed, so values greater than 1.0 speed up the animation and values less than 1.0 slow it down. The value in this property must always be greater than 0.0.