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
- UIGestureRecognizer
- Stanford cs193p
- Observable
- CustomStringConvertible
- Arc
- unowned
- reactivex
- JSONDecoder
- NSAttributedString
- Singleton Design Pattern
- weak
- uicollectionview
- 오늘의성취도
- Hashable
- CoreGraphics
- UIDynamicAnimator
- AVFoundation
- Equatable
- JSONEncoder
- UIBezierPath
- UIDocument
- rxswift
- PhotoKit
- 에어팟
- Git
- UIDocumentBrowserViewController
- IOS
- Swift
- MVP
- Codable
Archives
- Today
- Total
목록Lazy (1)
아직은 개린이
[Swift] lazy
Swift에는 lazy라는 키워드가 있다. Swift Programming Guide에 보면, Properties 부분에서 lazy stored properties라는 것이 나온다. A lazy stored property is a property whose initial value is not calculated until the first time it is used. You indicate a lazy stored property by writing the lazy modifier before its declaration. 즉, 처음 사용되기 전까지 초기값이 계산되지 않는 프로퍼티이다. 이게 어떤 때에 쓰이는 것일까? Lazy properties are useful when the initial v..
Swift + iOS/Swift
2020. 2. 10. 15:01