Contents

updateNSView(_:context:)

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

Declaration

@MainActor @preconcurrency func updateNSView(_ nsView: Self.NSViewType, context: Self.Context)

Parameters

  • nsView:

    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 AppKit 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