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
- 리펙토링
- ribs
- 클린 코드
- Human interface guide
- Protocol
- Observable
- 리펙터링
- swiftUI
- HIG
- rxswift
- uitableview
- Refactoring
- 리팩토링
- ios
- Clean Code
- tableView
- swift documentation
- SWIFT
- MVVM
- combine
- RxCocoa
- uiscrollview
- Xcode
- map
- collectionview
- clean architecture
- 스위프트
- UICollectionView
- UITextView
- 애니메이션
Archives
- Today
- Total
목록Identity Operator (1)
김종권의 iOS 앱 개발 알아가기
[iOS - swift 공식 문서] 9. Structures and Classes
Structures and Classes swift에서는 class의 인스턴스를 object라고 하지 않고, 기능에 가까운 언어이므로 "instance"라고 명명 Class에서만 있는 속성 상속 type casting: 런타임에 클래스 instance의 유형을 확인하고 해석 Deinitialzer는 클래스의 instance가 할당 된 리소스를 해제할 수 있도록 하는 기능 reference counting을 통해 한 클래스 instance에 대한 하나 이상의 참조를 허용 Structure와 Enum은 value type copy - by - value let hd = Resolution(width: 1920, height: 1080) var cinema = hd cinema.width = 2048 // c..
swift 공식 문서
2021. 6. 25. 22:25