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
- UICollectionView
- rxswift
- Human interface guide
- 리펙터링
- 리펙토링
- Clean Code
- 리팩토링
- uitableview
- swift documentation
- 클린 코드
- tableView
- 애니메이션
- SWIFT
- map
- ribs
- Protocol
- Observable
- RxCocoa
- combine
- uiscrollview
- 스위프트
- collectionview
- ios
- HIG
- clean architecture
- MVVM
- swiftUI
- Xcode
- Refactoring
- UITextView
Archives
- Today
- Total
목록화면전환 애니메이션 (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