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
- clean architecture
- ribs
- ios
- swiftUI
- 리팩토링
- 리펙터링
- tableView
- 애니메이션
- Protocol
- rxswift
- HIG
- swift documentation
- Human interface guide
- 클린 코드
- Observable
- map
- uitableview
- Clean Code
- combine
- uiscrollview
- RxCocoa
- UICollectionView
- 스위프트
- SWIFT
- collectionview
- Xcode
- MVVM
- UITextView
Archives
- Today
- Total
김종권의 iOS 앱 개발 알아가기
[iOS - swift] guard let self = self 사용 시 주의할 점 본문
Closure 개념
- Closure(폐쇄): 클로저는 코드에서 전달 및 사용할 수 있는 2가지의 자체 기능을 가진 블록
- 정의된 컨텍스트에서 모든 상수 및 변수에 대한 참조를 캡쳐하고 저장 가능
- 캡쳐: 자신의 블록 외부에 있는 값을 참조하는 것
- 자세한 내용: Closure 개념 정리
Closure의 생명주기
- closure(escaping, non-escaping)은 expensive한 serial sork를 처리하므로 작업이 끝날때까지 scrop가 딜레이
- closure(escaping, non-escaping)은 thread blocking 매커니즘(DispatchSemaphore)
- DispatchSemaphore: 카운팅 세마포어를 사용하여 여러 실행 컨텍스트에서 리소스에 대한 액세스 제어
- escaping closure는 특정 delay 이후 실행되도록 설계된 형태
// 3초 후 closure 실행
DispatchQueue.main.asyncAfter(deadline: .now() + 3) { [weak self] in
// todo
}
- escaping closure는 시간 초과가 긴 콜백을 예상
let url = URL(string: "https://www.google.com:81")!
let sessionConfig = URLSessionConfiguration.default
sessionConfig.timeoutIntervalForRequest = 999.0 // request time out 최대 값을 999초로 설정 (디폴트는 7일)
Closure안에서의 self 캡쳐
- 위 Closure의 생명주기를 통해
- 캡쳐 형태
- closure내부에서 다른 함수를 호출할 때 파라미터로 non-optional값을 넘길 경우 guard let self = self 를 사용하는 부분
- Swift 4.2이후부터 guard let에 키워드인 self를 변수로 써도 가능
let changeColorToRed = DispatchWorkItem { [weak sefl] in
guard let self = self else { return }
self.changeColor(targetView: self.myView, color: .red)
}
// mudule
func changeColor(targetView: UIView, color: UIColor) {
/// ...
}
guard let self = self 지양해야 하는 이유
- guard let self = self의 의미: 클로저 내에서 외부 프로퍼티를 캡처할때, 현재 instance가 heap에 존재하면 객체를 Strong으로 참조하고, instance가 해제 되었으면 nil을 반환하여 탈출
override func viewWillAppear(_ animated: Bool) {
super.viewWillAppear(animated)
process(image: myImage) { [weak self] result in
print(CFGetRetainCount(self)) // 30
guard let self = self else {
return
}
print(CFGetRetainCount(self)) // 31
}
}
- 강한 참조가 유지되어서, 중간에 무거운 작업이 있으면 crash날 확률이 존재하므로 guard let self = self 구문 지양
weak self주의하지 않아도 되는 것들
- 나중에 실행하기 위해 저장하지 않는 한 reference cycle에 관한 위험이 없는 것들
- GCD
- UIView.animate
* 참고
https://medium.com/flawless-app-stories/you-dont-always-need-weak-self-a778bec505ef
'iOS 기본 (swift)' 카테고리의 다른 글
[iOS - swift] Computed property vs method 구분 (0) | 2021.07.25 |
---|---|
[iOS - swift] addChild, removeFromParent / addSubview, removeFromSuperview (0) | 2021.07.15 |
[iOS - swift] Self vs self (대문자 Self와 소문자 self) (0) | 2021.07.06 |
[iOS - swift] Identifiable 프로토콜 (0) | 2021.06.29 |
[iOS - swift] (프로퍼티 구분) Stored Property vs Computed Property (0) | 2021.06.19 |
Comments