| 일 | 월 | 화 | 수 | 목 | 금 | 토 |
|---|---|---|---|---|---|---|
| 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 |
- Protocol
- tableView
- SWIFT
- Observable
- Xcode
- HIG
- UITextView
- scrollview
- Human interface guide
- clean architecture
- Clean Code
- collectionview
- uiscrollview
- UICollectionView
- uitableview
- rxswift
- MVVM
- swiftUI
- map
- Refactoring
- 애니메이션
- RxCocoa
- 리펙토링
- 스위프트
- ios
- 리팩토링
- 클로드코드
- swift documentation
- 클린 코드
- combine
- Today
- Total
목록touchesEnded (2)
김종권의 iOS 앱 개발 알아가기
사용하는 쪽 class ViewController: UIViewController { private let jkSwitchOne: JKSwitch = { let view = JKSwitch() view.translatesAutoresizingMaskIntoConstraints = false return view }() private let jkSwitchTwo: JKSwitch = { let view = JKSwitch() view.barTintColor = .red view.circleColor = .orange view.translatesAutoresizingMaskIntoConstraints = false return view }() override func viewDidLoad() { super...
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..