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 |
Tags
- MVVM
- uiscrollview
- 리팩토링
- Clean Code
- 스위프트
- collectionview
- Refactoring
- swiftUI
- Human interface guide
- combine
- HIG
- tableView
- Xcode
- SWIFT
- ribs
- 클린 코드
- ios
- rxswift
- 리펙터링
- swift documentation
- UICollectionView
- 애니메이션
- Observable
- Protocol
- map
- RxCocoa
- UITextView
- 리펙토링
- uitableview
- clean architecture
Archives
- Today
- Total
목록Pull down to dismiss (1)
김종권의 iOS 앱 개발 알아가기
![](http://i1.daumcdn.net/thumb/C150x150/?fname=https://blog.kakaocdn.net/dn/vLng5/btrtXxJrwc2/ooBLHpJElugTHKb23g46fk/img.gif)
구현 아이디어 아래로 당겨서 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