GeolocationMethod
Objective-C
enum GeolocationMethod : NSInteger {}
Swift
enum GeolocationMethod : Int
The enum represents the Geo Location methods used to get the current location
- GeolocationMethodUnknown: an unknown method
- GeolocationMethodDefault: default method
- GeolocationMethodIPAddress: Used IP address to get the location
- GeolocationMethodMobileNetwork: Used mobile network to get the location
- GeolocationMethodGPS: Used GPS to get the location
-
Undocumented
Declaration
Objective-C
GeolocationMethodUnknown =0Swift
case unknown = 0 -
Undocumented
Declaration
Objective-C
GeolocationMethodDefault =1Swift
case `default` = 1 -
Undocumented
Declaration
Objective-C
GeolocationMethodIPAddress =2Swift
case ipAddress = 2 -
Undocumented
Declaration
Objective-C
GeolocationMethodMobileNetwork =3Swift
case mobileNetwork = 3 -
Undocumented
Declaration
Objective-C
GeolocationMethodGPS =4Swift
case GPS = 4
GeolocationMethod Enumeration Reference