description |
---|
Sentiance SDK is compatible and is refined to be used with Swift Apps. |
Steps to integrate the Sentiance SDK into iOS Apps written in Swift:
- After the integration steps, in the Bridging Header for your application, import the Sentiance SDK in the files you want to use the API.
- Access the API using the singleton instance
Sentiance.shared
.
Example:
@import SENTSDK
class MyClass {
func run() {
let sentiance = Sentiance.shared
}
}