SystemKeyboards

public struct SystemKeyboards : KeyboardLaunchArgument

Launch option to replace system keyboards selected in the system.

Argument:

AppleKeyboards

Example:

SystemKeyboards(software: [.Bengali], hardware: [.Bengali])

Generated strings:

-AppleKeyboards ("bn@sw=Bengali", "bn@hw=Bangla")
  • Keyboards to set on device.

    Declaration

    Swift

    public var values: [LaunchArgumentValue] { get }
  • Initalizes self with arrays of hardware and software keyboards.

    Declaration

    Swift

    public init(software: SoftwareKeyboards = [], hardware: HardwareKeyboards = [])

    Parameters

    software

    Array of software keyboards.

    hardware

    Array of hardware keyboards.

  • Hardware keyboards to set on device. First element is the most preffered one.

    Declaration

    Swift

    public var launchArguments: [String]? { get }