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