사과
  • 애플 개발자 문서 한글 번역
  • App Frameworks
    • Foundation
      • 숫자, 데이터와 기본값
      • 문자열과 텍스트
      • 컬렉션
      • 날짜와 시간
      • 데이터 포맷
      • 작업 관리
        • Operation
        • OperationQueue
        • Timer
      • 리소스
        • Bundle
      • 파일 시스템
        • FileManager
      • Notification
        • NSKeyValueObserving
      • URL 로딩 시스템
        • 웹사이트 데이터를 메모리에 저장하기
        • URLSession
          • URLSessionConfiguration
            • urlCache
            • requestCachePolicy
          • configuration
        • URLSessionTask
        • URLRequest
        • URLResponse
        • HTTPURLResponse
        • 캐시 데이터에 접근하기
        • CachedURLResponse
        • URLCache
      • Object Runtime
        • NSValue
    • UIKit
      • UIKit으로 앱 개발
      • 앱과 환경
        • 앱 라이프 사이클 관리하기
        • 앱 실행에 대응하기
        • UIApplication
      • 문서, 데이터와 클립보드
      • Mac Catalyst
        • iPad 앱을 Mac 버전으로 만들기
        • 아이패드 앱의 맥 최적화
      • 뷰와 컨트롤
        • UIView
        • Table Views
          • UITableView
          • UITableViewCell
          • UIRefreshControl
        • UIScrollView
      • View Controllers
        • UIViewController
        • UITableViewController
        • UISearchController
      • 애니메이션과 햅틱
        • 프로퍼티 기반 애니메이션
          • UIViewPropertyAnimator
        • View controller 전환
      • 터치, 누르기, 제스처
        • UIResponder
        • UIKit 제스처 처리
        • 다중 제스처 인식기 조정
        • UILongPressGestureRecognizer
        • UIPanGestureRecognizer
          • maximumNumberOfTouches
          • minimunNumberOfTouches
          • translation(in:)
          • setTranslation(_:in:)
          • velocity(in:)
        • UIGestureRecognizer
    • Swift
      • 스위프트 표준 라이브러리
        • 메모리 직접 관리
          • 포인터 파라미터를 사용하는 함수 호출
          • UnsafePointer
          • UnsafeMutableRawBufferPointer
    • SwiftUI
      • 뷰와 컨트롤
        • View
        • Text
        • TextField
      • 뷰 레이아웃과 표현
      • 그리기와 애니메이션
      • 프레임워크 통합
      • 상태와 데이터 흐름
  • Graphics and Games
    • Core Animation
      • CALayer
      • CAAction
      • CAShapeLayer
      • CADisplayLink
    • Core Graphics
      • CGFloat
      • CGPath
  • App Services
    • Combine
    • WebKit
      • WKWebView
  • Media
    • AVFoundation
      • 시스템 오디오 상호작용
        • AVAudioSession
          • AVAudioSession.Category
            • ambient
            • multiRoute
            • playAndRecord
            • playback
            • record
            • soloAmbient
          • AVAudioSession.Mode
      • AVFoundation 자료형
  • Documentation Archive
    • 번들 프로그래밍 가이드
      • 번들에 대해
      • 번들 구조
    • Key-Value Observing 프로그래밍 가이드
    • Threading 프로그래밍 가이드
      • About Threaded Programming
      • Thread Management
  • ETC
    • Not Found
Powered by GitBook
On this page
  • 주제
  • 애니메이션 Delegate
  • 비 대화식 전환
  • 대화식 전환
  • 전환 조정자
  • 같이 보기
  • 컨텐츠 애니메이션
  1. App Frameworks
  2. UIKit
  3. 애니메이션과 햅틱

View controller 전환

PreviousUIViewPropertyAnimatorNext터치, 누르기, 제스처

Last updated 6 years ago

원문 출처

주제

애니메이션 Delegate

  • protocol UIViewControllerTransitioningDelegate

    뷰 컨트롤러간의 고정길이 또는 대화식 전환을 관리하는데 사용되는 메서드 집합

비 대화식 전환

  • protocol UIViewControllerAnimatedTransitioning

    view controller의 커스텀 전환을 구현하는데 사용되는 메서드 집합

  • protocol UIViewControllerContextTransitioning

    view controller간에 전환 애니메이션을 위한 컨텍스트 정보를 제공하는 메서드 집합

대화식 전환

  • class UIPercentDrivenInteractiveTransition

    두 개의 view controller 사이에서 대화형 애니메이션을 구동하는 객체

  • protocol UIViewControllerInteractiveTransitioning

    (네비게이션 컨트롤러 같은) 객체가 view controller 전환을 구동할 수 있게 하는 메서드 집합

  • protocol UIViewImplicitlyAnimating

    실행중인 애니메이션을 수정하기 위한 인터페이스

전환 조정자

  • protocol UIViewControllerTransitionCoordinator

    view controller 전환과 관련된 애니메이션을 지원하는 메서드 집합

  • protocol UIViewControllerTransitionCoordinatorContext 진행 중인 view controller 전환에 대한 정보를 제공하는 메서드 집합

같이 보기

컨텐츠 애니메이션

뷰의 프로퍼티를 바꿈으로써 애니메이션을 만드세요

https://developer.apple.com/documentation/uikit/animation_and_haptics/view_controller_transitions
프로퍼티 기반 애니메이션