> ## Documentation Index
> Fetch the complete documentation index at: https://documentation.qonversion.io/llms.txt
> Use this file to discover all available pages before exploring further.

# Initialize SDKs - iOS

## 1. Initialize Qonversion SDK

```swift theme={null}
import Qonversion

let config = Qonversion.Configuration(projectKey: "projectKey", launchMode: .subscriptionManagement)
Qonversion.initWithConfig(config)
```

## 2. Initialize No-Codes SDK

```swift theme={null}
let configuration = NoCodesConfiguration(projectKey: "projectKey")
NoCodes.initialize(with: configuration)
```

## 3. Set Delegates

```swift theme={null}
NoCodes.shared.set(delegate: self)
NoCodes.shared.set(screenCustomizationDelegate: self)

// Delegates can be also passed via the initialization through the configuration:
let noCodesConfig = NoCodesConfiguration(projectKey: "projectKey", delegate: self, screenCustomizationDelegate: self)
```
