OneTrust Consent Management for iOS

Integrate the RudderStack iOS (Obj-C) SDK with OneTrust.

The iOS (Obj-C) SDKiOS (Obj-C) refers to the legacy RudderStack iOS SDK. Note that it will be deprecated soon.

For new implementations, use the iOS (Swift) SDK instead.
lets you specify the user’s consent during initialization.

warning
The SDK supports the OneTrust consent management feature only in v1.9.0 and above.

This guide lists the steps to develop a consent interceptor for the iOS (Obj-C) SDK and use the interceptor to initialize the SDK after the user gives their consent.

Overview

The consent management is designed to be a filter for the event destinations and the natively added factories. Since the SDK initializes the native integration factories during the startup, you must first capture the user’s consent to the cookie categories.

info
You can add only one consent filter to the iOS (Obj-C) SDK.

For filtering, RudderStack uses the getConsentStatus(forCategory categoryId: String) method of the OneTrust SDK.

This setup assumes the iOS (Obj-C) SDK and the OneTrust SDK are already added to your application.

  1. Install RudderOneTrustConsentFilter by adding the following line to your Podfile:
pod 'RudderOneTrustConsentFilter', '~> 1.0.0'
  1. Import the iOS (Obj-C) SDK:
  1. Add the imports to your AppDelegate file under the didFinishLaunchingWithOptions method, as shown:
warning
Make sure you load the SDK only if the user provides their consent.

You can register CustomConsentFilter with the iOS (Obj-C) SDK during its initialization, as shown:

Additional settings for cloud mode

info
RudderStack supports OneTrust integration in cloud mode from iOS (Obj-C) SDK v1.12.0 and above, and RudderOneTrustConsentFilter 1.1.0.

You can specify your OneTrust cookie categories when sending events from your iOS (Obj-C) source in the cloud mode.

  1. Set up your iOS (Obj-C) source in the RudderStack dashboard.
  2. Connect it to a destination.
  3. In the destination settings, enter the OneTrust category IDs in the Enter consent category IDs field. You can specify multiple consent category IDs by pressing the Enter key after each ID.
info
You can find the category IDs in your OneTrust dashboard under Preference & Consent Management > Cookie Compliance > Categorizations > Categories.
OneTrust category ID in consent settings

Note that the settings for specifying multiple consent IDs vary slightly for some destinations. Click Add more after specifying each consent category ID.



Questions? Contact us by Email or on Slack