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
- 메모리 접근 충돌
- Apple Certificate
- in-out
- iOS 버전 점유율
- RxSwift
- ios
- 클린아키텍쳐
- Git Large File Storage
- RxCocoa
- coordinateSpace
- memory safety
- 잡초가득블로그
- conflicting access to memory
- RIBs Tutorial
- SWIFT
- rib
- Automatically manage signing
- iOS Target
- windowScene
- UICoordinateSpace
- swiftdocs
- App Signing
- 로버트마틴형
- Large File Storage
- Dispatch.main.sync
- Github file size
- Dependency Rule
- Concurrent
- 대머리깃허브
- Ribs
Archives
- Today
- Total
빙수왕의 개발일지
`self`에 Backquote를 넣는 이유 본문
클로져에서
[weak self] _ in
guard let self = `self` else { return }
이런 코드 발견
왜 `self`라고 쓸까? 백틱 없이 self라고 써도 되는데?
여기 나와 같은 고민
https://stackoverflow.com/questions/50119484/self-in-swift-closure
`(Backquote)는 스위프트의 키워드(예약어)를 이름으로 사용할 때 쓰는것임.. ex) `var`
guard문에서 self라는 새로운 로컬 변수를 생성하고 있으므로 백틱을 넣어줘야 한다.
당연한 얘기였다 바보..
그럼 왜 self = self가 가능한가?
Swift 4.2부터 이게 가능했다고 함..
Swift 4.2 recently adopted a proposal to add this to the language:
guard let self = self else { return }
'개발 > iOS' 카테고리의 다른 글
Cell에서 Custom Initializer을 사용하고 싶은데 방법이 없을까.. (0) | 2020.11.29 |
---|---|
파라미터 Bool일때 Argument label 어떻게 해야 예쁜가 (0) | 2020.11.29 |
Convenience init을 강제하는 법 (0) | 2020.11.29 |
UICollectionView의 cellForItem이 nil이 나올 때 (0) | 2020.11.25 |
withIdentifier 하드코딩 말고 다른방법 (0) | 2020.10.11 |