1
ページカールトランジションを使用してUIPageViewControllerを使用しています。トランジションページの速度を制御するにはどうすればよいですか?UIPage ViewControllerの移行速度を制御する方法は?
ページカールトランジションを使用してUIPageViewControllerを使用しています。トランジションページの速度を制御するにはどうすればよいですか?UIPage ViewControllerの移行速度を制御する方法は?
あなたは、私のようなものを考えて
let animation: CATransition = CATransition()
animation.delegate = self
animation.duration = 1.0
animation.startProgress = 0.2
animation.endProgress = 1
animation.type = "pageCurl"
animation.subtype = kCATransitionFromLeft
animation.fillMode = kCAFillModeBackwards
self.view.layer.addAnimation(animation, forKey: "animation")
をカスタムアニメーションを使用することができます