Contents

init(coder:)

Creates a hosting controller object from the contents of the specified archive.

Declaration

@MainActor @preconcurrency required dynamic init?(coder aDecoder: NSCoder)

Discussion

The default implementation of this method throws an exception. To create your view controller from an archive, override this method and initialize the superclass using the init(coder:rootView:) method instead.

-Parameter coder: The decoder to use during initialization.

See Also

Creating a hosting controller object