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
- tableView
- Xcode
- HIG
- Clean Code
- Protocol
- UITextView
- 리펙터링
- MVVM
- uitableview
- map
- 클린 코드
- 리펙토링
- swiftUI
- 리팩토링
- ios
- uiscrollview
- Observable
- combine
- rxswift
- 애니메이션
- 스위프트
- swift documentation
- collectionview
- UICollectionView
- Refactoring
- SWIFT
- Human interface guide
- clean architecture
- ribs
- RxCocoa
Archives
- Today
- Total
목록프로퍼티 참조 (1)
김종권의 iOS 앱 개발 알아가기
[iOS - swift] 프로퍼티 assign 개념 (#reference type, #ARC)
프로퍼티를 assign한다는 의미 assign한다는 것은 아래처럼 특정 값을 변수에 대입한다는 의미 // a에 1을 assign하는 형태 let a = 1 assign되는 2가지 형태 primary type, struct와 같은 value type을 assign하는 경우 value type을 assign하게되면 a프로퍼티는 value type가 됨 // a에 1을 assign하는 형태 let a = 1 class와 같은 reference type을 assign하는 경우 reference type을 assign하게되면 해당 프로퍼티는 reference type이 됨 class C {} let c = C() reference type 주의사항 reference type이라는 의미를 주의할 것 아래와 같이 c..
iOS 응용 (swift)
2024. 2. 15. 01:20