Project 12 - Animation

DaY·2021년 4월 13일
1

iOS

목록 보기
32/52
post-thumbnail

UIViewControllerAnimatedTransitioning

Animation custom

func animateTransition(using transitionContext: UIViewControllerContextTransitioning) {

}

뷰가 전환될 때의 Duration

func transitionDuration(using transitionContext: UIViewControllerContextTransitioning?) -> TimeInterval {

}

UIViewControllerTransitioningDelegate

view가 보여질 때 실행

func animationController(forPresented presented: UIViewController, presenting: UIViewController, source: UIViewController) -> UIViewControllerAnimatedTransitioning? {

}

view가 사라질 때 실행

func animationController(forDismissed dismissed: UIViewController) -> UIViewControllerAnimatedTransitioning? {

}

0개의 댓글