[SwiftUI] SwiftUI + Coordinator Pattern 기본편
타겟💡 iOS 16 이상을 기준으로 작성된 코드입니다준비화면 전환 기능을 담당하게 될 Coordinator 함수를 Protocol로 작성합니다 (Coordinator.swift)전환할 모든 화면을 enum 타입으로 작성합니다 (Destination.swift)전환할 View를 만듭니다CoordinatorProtocol.swiftprotocol CoordinatorProtocol { associatedtype T: Hashable func push(_ path: T) func pop() func popToView(_ to: T) func popToRoot()}Coordinator.swiftfinal class Coordinator: ObservableObject { @Pu..
IOS/SwiftUI
2024. 7. 24. 13:30