ConnectUIMode

@frozen
public enum ConnectUIMode

Indicates the mode of operation for the connect UI.

  • Always present user interface to the user, allowing the user to select a device.

    Declaration

    Swift

    case alwaysShow
  • Attempts to connect to the most-recently connected device, if one is available. If none are available, or if the most-recently connected device is not found before timeout elapses, the search user interface is shown.

    Declaration

    Swift

    case connectToLast(timeout: TimeInterval)
  • Attempts to connect to the device with a specific device id.

    Declaration

    Swift

    case reconnect(device: MostRecentlyConnectedDevice)