> For the complete documentation index, see [llms.txt](https://create.cloud4wi.ai/dev-hub/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://create.cloud4wi.ai/dev-hub/location-sdk/integrating-the-sdk/ios/sdk-methods/locations-of-interest/home-location.md).

# Home location

### Get home location

{% tabs %}
{% tab title="Swift" %}

```swift
//importing the framework
import GeoUniq

...

let home: GUHomeLocation? = GeoUniq.sharedInstance().getHomeLocation()

...
```

{% endtab %}

{% tab title="Objective-C" %}

```objectivec
//importing the framework
#import "GeoUniq/GeoUniq-Swift.h"
...

GUHomeLocation* home = [[GeoUniq sharedInstance] getHomeLocation];

...

```

{% endtab %}
{% endtabs %}

### Set home location listener

{% tabs %}
{% tab title="Swift" %}

```swift
//importing the framework
import GeoUniq

...

GeoUniq.sharedInstance().setHomeLocationListener(listener: ClassTest)

...
```

{% endtab %}

{% tab title="Objective-C" %}

```objectivec
//importing the framework
#import "GeoUniq/GeoUniq-Swift.h"
...

[[GeoUniq sharedInstance] setHomeLocationListenerWithListener:[ClassTest class]];

...
```

{% endtab %}
{% endtabs %}

where ClassTest is conform to protocol `GUHomeLocationListener:`

```swift
/**
 *  Delegate to implement in order to receive callbacks for the home location updates
 */
@objc public protocol GUHomeLocationListener {
	
	/**
	 Public constructor
	 */
	@objc init()
	
	/**
	 Called when a new home location is detected
	 
	 - parameter GUHomeLocation: Home location detected
	 */
	@objc func onNewHomeLocationDetected(home: GUHomeLocation) -> ()
}

```

### Remove home location listener

{% tabs %}
{% tab title="Swift" %}

```swift
//importing the framework
import GeoUniq

...

GeoUniq.sharedInstance().removeHomeLocationListener(listener: ClassTest)

...
```

{% endtab %}

{% tab title="Objective-C" %}

```objectivec
//importing the framework
#import "GeoUniq/GeoUniq-Swift.h"
...

[[GeoUniq sharedInstance] removeHomeLocationListenerWithListener:[ClassTest class]];

...
```

{% endtab %}
{% endtabs %}

### Get home location listeners

{% tabs %}
{% tab title="Swift" %}

```swift
//importing the framework
import GeoUniq

...

let homeLocationListeners: [GUHomeLocation]? = GeoUniq.sharedInstance().getHomeLocationListeners()

...
```

{% endtab %}

{% tab title="Objective-C" %}

```objectivec
//importing the framework
#import "GeoUniq/GeoUniq-Swift.h"
...

NSArray *listeners = [[GeoUniq sharedInstance] getHomeLocationListeners];

...

```

{% endtab %}
{% endtabs %}

### Remove home location listeners

{% tabs %}
{% tab title="Swift" %}

```swift
//importing the framework
import GeoUniq

...

GeoUniq.sharedInstance().removeHomeLocationListeners()

...
```

{% endtab %}

{% tab title="Objective-C" %}

```objectivec
//importing the framework
#import "GeoUniq/GeoUniq-Swift.h"
...

[[GeoUniq sharedInstance] removeHomeLocationListeners];

...
```

{% endtab %}
{% endtabs %}


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://create.cloud4wi.ai/dev-hub/location-sdk/integrating-the-sdk/ios/sdk-methods/locations-of-interest/home-location.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
