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 |
Tags
- 리펙토링
- ribs
- HIG
- SWIFT
- clean architecture
- map
- 리팩토링
- swift documentation
- tableView
- Xcode
- 리펙터링
- UICollectionView
- Human interface guide
- uitableview
- MVVM
- 애니메이션
- combine
- 클린 코드
- Refactoring
- RxCocoa
- 스위프트
- UITextView
- Clean Code
- swiftUI
- Observable
- ios
- uiscrollview
- collectionview
- rxswift
- Protocol
Archives
- Today
- Total
목록메모리 적재 타이밍 (1)
김종권의 iOS 앱 개발 알아가기
[iOS - swift] (기본기) 코드 실행과 메모리 적재 타이밍
코드 실행아래와 같이 viewDidAppear에서 a()함수가 실행되면 출력되는 값은?"a" -> "b" -> "c" -> "deinit" 일까?class VC: UIViewController { deinit { print("deinit") } override func viewDidLoad() { super.viewDidLoad() view.backgroundColor = .systemBlue } override func viewDidAppear(_ animated: Bool) { super.viewDidAppear(animated) a() } func a() { prin..
iOS 기본 (swift)
2024. 5. 31. 01:48