Info

public struct Info

Info.plist assistant.

  • Undocumented

    Declaration

    Swift

    public let bundle: Bundle
  • Create an Info assistant with a specific bundle.

    Declaration

    Swift

    public init(bundle: Bundle)

    Parameters

    bundle

    the bundle.

  • Get an Info assistant with Bundle.main.

    Declaration

    Swift

    public static var main: Info { get }
  • Get the version in the bundle info dictionary.

    Declaration

    Swift

    public var version: String? { get }
  • Get the build in the bundle info dictionary.

    Declaration

    Swift

    public var build: String? { get }
  • Get the bundle identifier of the bundle.

    Declaration

    Swift

    public var bundleIdentifier: String? { get }
  • Get the display name in the bundle info dictionary.

    Declaration

    Swift

    public var displayName: String? { get }
  • Get if is status bar hidden in the bundle info dictionary.

    Declaration

    Swift

    public var isInitiallyStatusBarHidden: Bool? { get }
  • Get the status bar style in the bundle info dictionary.

    Declaration

    Swift

    public var statusBarStyle: UIStatusBarStyle? { get }