Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- UITextView
- collectionview
- uitableview
- 애니메이션
- Xcode
- clean architecture
- 클린 코드
- combine
- Observable
- swift documentation
- Clean Code
- map
- tableView
- Protocol
- swiftUI
- MVVM
- ribs
- 리펙토링
- 리팩토링
- 리펙터링
- SWIFT
- Human interface guide
- rxswift
- ios
- 스위프트
- uiscrollview
- HIG
- Refactoring
- RxCocoa
- UICollectionView
Archives
- Today
- Total
목록Transition Animation (1)
김종권의 iOS 앱 개발 알아가기
[iOS - swift] 화면 전환 애니메이션 커스텀 방법 (UIPercentDrivenInteractiveTransition, UIViewControllerAnimatedTransitioning, UIViewControllerTransitioningDelegate)
화면전환 애니메이션 커스텀 아이디어 VC1 -> VC2로 화면전환 하는 경우, VC2 인스턴스의 화면전환 델리게이트를 conform하여 애니메이션을 넣어주는 것 delegate 부분 // ViewController.swift (=VC1) @objc private func didTapNextButton() { let vc2 = VC2() vc2.transitioningDelegate = self // UIViewControllerAnimatedTransitioning? { MyPresentTransition() } func animationController(forDismissed dismissed: UIViewController) -> UIViewControllerAnimatedTransitioning?..
iOS 응용 (swift)
2022. 3. 20. 14:00