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
- 클린 코드
- rxswift
- ribs
- 리팩토링
- Refactoring
- map
- 스위프트
- swiftUI
- 리펙토링
- swift documentation
- Xcode
- HIG
- Human interface guide
- ios
- combine
- 애니메이션
- MVVM
- collectionview
- Clean Code
- uitableview
- Observable
- UITextView
- UICollectionView
- uiscrollview
- clean architecture
- tableView
- RxCocoa
- Protocol
- 리펙터링
- SWIFT
Archives
- Today
- Total
목록프로토콜 프로퍼티 이름 중복 (1)
김종권의 iOS 앱 개발 알아가기
[iOS - swift] Protocol 확장에서 프로퍼티 치환 방법, 프로토콜 프로퍼티 이름 중복 해결 (#@_implements)
Protocol 프로퍼티 치환 일반적으로 protocol에서 프로퍼티를 선언하면, 이 프로토콜을 준수하는 쪽에서 똑같은 프로퍼티 이름으로만 접근이 가능 protocol SomeProtocol { var myProperty: Int { get } } struct SomeStruct: SomeProtocol { var myProperty: Int } 만약 프로퍼티 이름이 다르면 컴파일 에러 발생) @_implements를 사용하면 다른 이름으로 사용이 가능 @_implements 키워드 @_implements(ProtocolName, propertyName)으로 프로퍼티 위에 선언하여 사용 struct SomeStruct2: SomeProtocol { @_implements(SomeProtocol, myPr..
iOS 응용 (swift)
2023. 10. 26. 01:32