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 =0
Swift
case unknown = 0
-
Undocumented
Declaration
Objective-C
GeolocationMethodDefault =1
Swift
case `default` = 1
-
Undocumented
Declaration
Objective-C
GeolocationMethodIPAddress =2
Swift
case ipAddress = 2
-
Undocumented
Declaration
Objective-C
GeolocationMethodMobileNetwork =3
Swift
case mobileNetwork = 3
-
Undocumented
Declaration
Objective-C
GeolocationMethodGPS =4
Swift
case GPS = 4