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 |
Tags
- Refactoring
- 스위프트
- map
- Observable
- clean architecture
- HIG
- combine
- 리팩토링
- Protocol
- swift documentation
- MVVM
- Human interface guide
- 리펙터링
- 리펙토링
- UITextView
- Clean Code
- Xcode
- ios
- SWIFT
- collectionview
- uitableview
- tableView
- UICollectionView
- RxCocoa
- swiftUI
- 애니메이션
- 클린 코드
- ribs
- uiscrollview
- rxswift
Archives
- Today
- Total
김종권의 iOS 앱 개발 알아가기
[iOS - UI Custom] 16. TapGuestureRecognizer(탭 제스쳐) (programmatically) 본문
iOS 실전 (swift)/UI 커스텀(프로그래밍적 접근)
[iOS - UI Custom] 16. TapGuestureRecognizer(탭 제스쳐) (programmatically)
jake-kim 2020. 5. 5. 19:41제스쳐 생성 및 등록, 6~7번라인
1
2
3
4
5
6
7
8
9
10
11
12
|
// ViewController.swift
override func viewDidLoad() {
super.viewDidLoad()
/// view에 tap제서쳐 등록
let tap = UITapGestureRecognizer(target: self, action: #selector(myPrint(_:)))
view.isUserInteractionEnabled = true // 없으면 동장하지 않음 view.addGestureRecognizer(tap)
}
@objc func myPrint(_ sender: Any) {
print("tap!")
}
|
'iOS 실전 (swift) > UI 커스텀(프로그래밍적 접근)' 카테고리의 다른 글
[iOS - UI Custom] 15. PickerView(피커 뷰) (programmatically) (0) | 2020.05.04 |
---|---|
[iOS - UI Custom] 14. slide-out bar (side bar)만들기 (CGAffineTransform사용) (2) | 2020.05.01 |
[iOS - UI Custom] 13. storyboard제거하여 SceneDelegate에 코딩하기 (0) | 2020.04.30 |
[iOS - UI Custom] 12. table view (programmatically) (0) | 2020.04.30 |
[iOS - UI Custom] 11. Auto layout (programmatically) (0) | 2020.04.26 |
Comments