Home location
Get home location
//importing the framework
import GeoUniq
...
let home: GUHomeLocation? = GeoUniq.sharedInstance().getHomeLocation()
...//importing the framework
#import "GeoUniq/GeoUniq-Swift.h"
...
GUHomeLocation* home = [[GeoUniq sharedInstance] getHomeLocation];
...
Set home location listener
//importing the framework
import GeoUniq
...
GeoUniq.sharedInstance().setHomeLocationListener(listener: ClassTest)
...//importing the framework
#import "GeoUniq/GeoUniq-Swift.h"
...
[[GeoUniq sharedInstance] setHomeLocationListenerWithListener:[ClassTest class]];
...where ClassTest is conform to protocol GUHomeLocationListener:
Remove home location listener
Get home location listeners
Remove home location listeners
Last updated
Was this helpful?