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