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