일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- github
- SwiftUI
- MacOS
- view
- Archive
- error
- Firebase
- mac
- Xcode
- Git
- IOS
- window
- geofencing
- Swift
- UIButton
- 이미지
- 웹뷰
- rxswift
- FLUTTER
- Session
- Realm
- JPA
- iOS16
- 한글
- Code
- appstore
- Notification
- darkmode
- Apple
- 개발자
- Today
- Total
목록detect (2)
EEYatHo 앱 깎는 이야기
SwiftUI 에는 뷰의 생명주기로 onAppear과 onDisappear만 제공한다. 나는 deinit을 감지하고 싶다.. 하지만 Struct는 deinit을 오버라이드 할 수 없는걸? class의 도움을 받는다. DeinitDetector /// 구조체의 deinit을 확인하기위한 class final class DeinitDetector { deinit { var typeString = "\(type(of: T.self))" /// "SomeView.Type" typeString.removeLast(5) /// "SomeView" print("🖐🖐🖐 \(typeString): \(#function)") /// "🖐🖐🖐 NotificationView: deinit" deinitCompletion?()..
swipe back 을 끄고, 키는 것은 interactivePopGestureRecognizer로 한다. navigationController?.interactivePopGestureRecognizer?.isEnabled = true // false 하지만, back을 성공했는지 실패했는지 감지할 때는 한계가 있다. @available(iOS 7.0, *) open var interactivePopGestureRecognizer: UIGestureRecognizer? { get } interactivePopGestureRecognizer는 그저 UIGestureRecognizer이기에, 얘를 아무리 들들 볶아도 화면 전환을 성공했는지 실패했는지는 알 수 없다. * 안되는 방법1 ) target을 이용한..