JWInterfaceBehavior

@objc
public enum JWInterfaceBehavior : Int
extension JWInterfaceBehavior: CustomStringConvertible

Constants representing the behavior of the interface.

  • The interface is enabled, and reacts to the user’s input in a default manner.

    Declaration

    Swift

    case normal
  • The interface is disabled, and never visible on the screen.

    Declaration

    Swift

    case hidden
  • The interface is always on the screen, and never goes away.

    Declaration

    Swift

    case alwaysOnScreen
  • Declaration

    Swift

    public var description: String { get }