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
- Human interface guide
- collectionview
- swift documentation
- Clean Code
- SWIFT
- 리팩토링
- 리펙터링
- tableView
- ios
- ribs
- swiftUI
- combine
- Refactoring
- clean architecture
- UITextView
- RxCocoa
- MVVM
- Xcode
- 애니메이션
- rxswift
- uitableview
- Observable
- 클린 코드
- 스위프트
- uiscrollview
- UICollectionView
- HIG
- map
- Protocol
- 리펙토링
Archives
- Today
- Total
목록touches 제스쳐 (1)
김종권의 iOS 앱 개발 알아가기
[iOS - swift] touches 제스쳐 (touchesBegin, touchesMoved, touchesEnded, touchesCancelled)
touches 제스쳐 touches 제스쳐는 UIResponder에 기본적으로 구현되어 있는 메소드로 4가지가 존재 // UIResponder - (void)touchesBegan:(NSSet *)touches withEvent:(nullable UIEvent *)event; - (void)touchesMoved:(NSSet *)touches withEvent:(nullable UIEvent *)event; - (void)touchesEnded:(NSSet *)touches withEvent:(nullable UIEvent *)event; - (void)touchesCancelled:(NSSet *)touches withEvent:(nullable UIEvent *)event; - (void)touche..
iOS 응용 (swift)
2022. 3. 26. 21:07