ReachabilityType

public enum ReachabilityType : CustomStringConvertible

The ReachabilityType enum defines a set of Reachability Types which are representing the actual status of the devices reachability.

  • Connection to a Wireless Wide Area Network(WWAN) e.g. E, 3G, LTE

    Declaration

    Swift

    case wwan
  • Connection to a WiFi network

    Declaration

    Swift

    case wifi
  • No Internet connection possible

    Declaration

    Swift

    case offline
  • Returns String description of ReachabilityType Enums

    Declaration

    Swift

    public var description: String { get }