Contents

makeCoordinator()

Creates the custom instance that you use to communicate changes from your interface object to other parts of your SwiftUI interface.

Declaration

@MainActor @preconcurrency func makeCoordinator() -> Self.Coordinator

Discussion

Implement this method if changes to your interface object might affect other parts of your app. In your implementation, create a custom Swift instance that can communicate with other parts of your interface. For example, you might provide an instance that binds its variables to SwiftUI properties, causing the two to remain synchronized. If your interface object doesn’t interact with other parts of your app, providing a coordinator is unnecessary.

SwiftUI calls this method before calling the makeWKInterfaceObject(context:) method. The system provides your coordinator either directly or as part of a context structure when calling the other methods of your representable instance.

See Also

Providing a custom coordinator object