2016-05-24 17 views

答えて

1

あなたは、私のようなものを考えて

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") 
をカスタムアニメーションを使用することができます
関連する問題