Swift Entry macro (@Entry)
기존 SwiftUI에서는 아래의 형태로 커스텀하여 사용할 수 있었음.
extension EnvironmentValues {
struct OrientationEnvironmentKey: EnvironmentKey {
static var defaultValue: UIInterfaceOrientation = .portrait
}
var orientation: UIInterfaceOrientation {
get { self[OrientationEnvironmentKey.self] }
set { self[OrientationEnvironmentKey.self] = newValue }
}
}
해당 매크로를 사용하면 더 단순하고 깔끔하게 변환 가능
extension EnvironmentValues {
@Entry var orientation: UIInterfaceOrientation = .portrait
}
매크로로만 바뀌었을 뿐, View에서 사용하는 부분은 동일함.
뷰에서 사용하는 부분은 동일함.
struct ParentView: View {
@Environment(\.orientation) var orientation
var body: some View {
VStack {
Text("parent: \(orientation.isPortrait)")
}
}
}
'apple > Docs, iOS, Swift' 카테고리의 다른 글
Swift AsyncStream, AsyncThrowingStream 정리 (2) | 2024.08.16 |
---|---|
Swift nonmuating, mutating (0) | 2024.08.14 |
CloudKit(iCloud) 정리 이론 #2 (0) | 2024.08.06 |
[WWDC24] UI 애니메이션 및 전환 효과 향상하기 (0) | 2024.08.05 |
[UIKit] appearance callbacks (화면 전환시 LifeCycle) (0) | 2024.08.05 |