Contents

updateUIView(_:context:)

Updates the state of the specified view with new information from SwiftUI.

Declaration

@MainActor @preconcurrency func updateUIView(_ uiView: Self.UIViewType, context: Self.Context)

Parameters

  • uiView:

    Your custom view 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. Use this method to update the configuration of your view to match the new state information provided in the context parameter.

See Also

Creating and updating the view