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