updateUIViewController(_:context:)
Updates the state of the specified view controller with new information from SwiftUI.
Declaration
@MainActor @preconcurrency func updateUIViewController(_ uiViewController: Self.UIViewControllerType, context: Self.Context)Parameters
- uiViewController:
Your custom view controller object.
- context:
A context structure containing information about the current state of the system.
Discussion
When the state of your app changes, SwiftUI updates the portions of your interface affected by those changes. SwiftUI calls this method for any changes affecting the corresponding UIKit view controller. Use this method to update the configuration of your view controller to match the new state information provided in the context parameter.