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
- rxswift
- UICollectionView
- map
- 리팩토링
- MVVM
- ios
- combine
- clean architecture
- 리펙터링
- uiscrollview
- swiftUI
- UITextView
- uitableview
- swift documentation
- collectionview
- Xcode
- 리펙토링
- Clean Code
- Observable
- SWIFT
- Protocol
- Refactoring
- Human interface guide
- RxCocoa
- 클린 코드
- HIG
- tableView
- 스위프트
- ribs
- 애니메이션
Archives
- Today
- Total
목록View Layer (1)
김종권의 iOS 앱 개발 알아가기
[iOS - swift] View Layering 테크닉 (+ gesture, Interaction, isUserInteractionEnabled 처리)
gesture 인식 사전 지식 someView.isUserInteractionEnabled = false인 경우, someView의 subview들은 모두 gesture 이벤트를 받을 수 없는 상태 super.viewDidLoad() self.view.isUserInteractionEnabled = false // self.view에 추가되는 뷰들은 제스처 이벤트 수신 불가 self.view.addSubview(self.someButton) someView.addSubview(topView)로 추가되는 경우, someView에 있던 UI들이 topView에 가려지면 someView 터치 인식이 불가능 hitTest를 이용하면 topView로 가려져도 someView의 UI들의 터치 이벤트 인식이 가능 h..
iOS 응용 (swift)
2022. 5. 20. 23:39