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
- uitableview
- combine
- 클린 코드
- Xcode
- map
- UICollectionView
- swift documentation
- 리펙토링
- 리펙터링
- HIG
- swiftUI
- ribs
- rxswift
- clean architecture
- Clean Code
- Human interface guide
- Protocol
- uiscrollview
- tableView
- Refactoring
- 리팩토링
- MVVM
- SWIFT
- ios
- 애니메이션
- Observable
- collectionview
- RxCocoa
- 스위프트
Archives
- Today
- Total
목록에지 제스쳐 (1)
김종권의 iOS 앱 개발 알아가기
[iOS - swift] UIScreenEdgePanGestureRecognizer 개념
UIScreenEdgePanGestureRecognizer 개념 edge pan이라는 이름에서도 볼 수 있듯이 아이폰의 가장장리 부분으로부터 안쪽으로 드래그하면 동작하는 제스쳐이 인스턴스의 프로퍼티 중 알아야 하는 것은 edgesedges: 드래그의 시작점 (top, left, bottom, right, all)let edgePanGesture = UIScreenEdgePanGestureRecognizer(target: self, action: #selector(handleEdgePan(_:)))edgePanGesture.edges = .leftview.addGestureRecognizer(edgePanGesture)ex) edgePanGesture를 등록하여 왼쪽에서 오른쪽으로 드래그하면 뷰의 배경색상..
iOS 응용 (swift)
2024. 9. 30. 01:49