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
- 리펙터링
- 애니메이션
- Clean Code
- map
- Human interface guide
- Xcode
- ribs
- swiftUI
- collectionview
- MVVM
- UICollectionView
- 리펙토링
- uitableview
- uiscrollview
- HIG
- SWIFT
- ios
- swift documentation
- clean architecture
- 클린 코드
- tableView
- 스위프트
- Observable
- Refactoring
- UITextView
- Protocol
- combine
- RxCocoa
- rxswift
- 리팩토링
Archives
- Today
- Total
목록아래로 당겨서 dismiss하기 (1)
김종권의 iOS 앱 개발 알아가기
[iOS - swift] Pull down to dismiss (아래로 당겨서 dismiss하기), UIPanGestureRecognizer
구현 아이디어 아래로 당겨서 dismiss되는 UIViewController를 상속받은 `ViewControllerPannable` 클래스 정의 class ViewControllerPannable: UIViewController {} 내부에서 UIPanGestureRecognizer 제스처 등록 override func viewDidLoad() { super.viewDidLoad() let panGestureRecognizer = UIPanGestureRecognizer(target: self, action: #selector(panGestureAction(_:))) self.view.addGestureRecognizer(panGestureRecognizer) } @objc func panGestur..
iOS 응용 (swift)
2022. 2. 22. 23:24