# Swift Support

Steps to integrate the Sentiance SDK into iOS Apps written in Swift:

1. After the [integration steps](/a-complete-integration/ios-sdk.md), in the [Bridging Header](https://developer.apple.com/documentation/swift/importing-objective-c-into-swift) for your application, import the Sentiance SDK in the files you want to use the API.
2. Access the API using the singleton instance `Sentiance.shared`.

Example:

```swift
@import SENTSDK

class MyClass {
    func run() {
        let sentiance = Sentiance.shared
    }
}
```


---

# Agent Instructions: 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://docs.sentiance.com/important-topics/sdk/appendix/ios/swift-support.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.
