/sample-app-ios-swift-swiftui

Sample Xcode project in Swift (using SwiftUI)

Primary LanguageSwiftBSD 3-Clause "New" or "Revised" LicenseBSD-3-Clause

Didomi - iOS Sample App (SwiftUI)

Description

This sample app demonstrates how to implement Didomi in a simple Xcode project using SwiftUI.

In particular, it shows how to:

  • Condition a custom vendor to consent
  • Open the Preferences
  • Share consent with a web view

This app is also using the Google Mobile Ads SDK as we are taking Google Advertising Products as an example of a commonly used IAB vendor.

The Didomi SDK is added using Swift Package Manager. For examples using CocoaPods, see our other iOS sample apps:

Content

AdCoordinator

A helper class responsible for loading and presenting ads (see https://developers.google.com/admob/ios/swiftui).

ContentView

The main view of our app, where we call setupUI() to show the Didomi notice if needed. Here we define the actions of the buttons of our UI:

  • Show the preferences (purposes).
  • Show the preferences (vendors).
  • Show a web view.
  • Show an ad.

CustomVendor

Implement a basic CustomVendor class with an initialize() method to simulate our custom vendor's SDK.

DidomiButtonStyle

Define the style of the buttons.

Sample_App_SwiftUIApp

  • Initialize the Didomi SDK.
  • Initialize the Google Mobile Ads SDK. The consent status is shared with Google automatically as it is an IAB vendor.
  • Condition a custom vendor to consent. We initialize it if and only if it is enabled.

ViewControllerRepresentable

A helper class to provide a view controller to be used by the Didomi SDK as well as the Google Mobile Ads SDK.

WebView

We use a UIViewRepresentable to load a WKWebView and share consent with it. You need to embed the Didomi Web SDK in the HTML page that is loaded by the web view so that it can collect the consent information passed from the app and share it with vendors. The list of vendors configured in the web SDK in the web view should be a subset of the list of vendors configured in the mobile app. That will ensure that the WebView has all the consent information it needs and does not re-collect consent. See Share consent with WebViews.