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
- collectionview
- Human interface guide
- combine
- 리펙터링
- Protocol
- HIG
- RxCocoa
- SWIFT
- uiscrollview
- UITextView
- MVVM
- swift documentation
- 리펙토링
- 애니메이션
- Xcode
- Observable
- clean architecture
- ribs
- ios
- UICollectionView
- 리팩토링
- map
- tableView
- Clean Code
- 스위프트
- rxswift
- Refactoring
- 클린 코드
- swiftUI
- uitableview
Archives
- Today
- Total
목록@_spi 키워드 (1)
김종권의 iOS 앱 개발 알아가기
[iOS - swift] @_spi(Private) import 개념 (#@_api, Swift Private Interface, 프레임워크, 모듈)
@_spi 개념 swift의 접근 제어자는 open, public, internal, fileprivate, private이 있지만 프레임워크 사이의 또 다른 접근 제어자가 존재 SPI(Swift Private Interface)도 외부에 노출할 인터페이스 제어가 가능 @_spi(Private) 키워드를 property, func, class 등 앞에 붙이면 이 것을 접근하려면 사용하는 쪽에서 @_spi(Private)으로 import해야 접근이 가능 접근제어자보다, @_spi(Private)우선순위가 더욱 커서 public으로 열어주어도 @_spi(Private) 없이 접근 불가 // Jake 프레임워크 @_spi(Private) public func myPrivateFunc() {} // Jake 프..
iOS 응용 (swift)
2023. 8. 1. 01:15