ServiceHandler

struct ServiceHandler : AppHandler
extension ServiceHandler: AppLaunchHandler

Stub for startup construction

  • Global accessor

    Declaration

    Swift

    static var services: ServiceHandler? { get }
  • willFinishLaunchingWithOptions handler

    Declaration

    Swift

    func application(
        _ application: UIApplication,
        // swiftlint:disable:next discouraged_optional_collection
        willFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?
    ) -> Bool

    Parameters

    application

    UIApplication

    launchOptions

    Options

    Return Value

    Success

  • didFinishLaunching handler

    Declaration

    Swift

    func application(
        _ application: UIApplication,
        // swiftlint:disable:next discouraged_optional_collection
        didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?
    ) -> Bool

    Parameters

    application

    UIApplication

    launchOptions

    Options

    Return Value

    Success