Link Search Menu Expand Document

UIApplicationDelegateAdaptor

A property wrapper that is used in App to provide an application delegate from Swift/Win32.

@propertyWrapper
public struct UIApplicationDelegateAdaptor<DelegateType: ApplicationDelegate> 

Initializers

init(_:)

Creates an UIApplicationDelegateAdaptor using an ApplicationDelegate.

public init(_ delegateType: DelegateType.Type = DelegateType.self) 

Properties

wrappedValue

The underlying delegate.

public private(set) var wrappedValue: DelegateType