description |
---|
Detailed technical documentation on RudderStack’s iOS SDK using XCode to send events from your iOS device to various destinations. |
The RudderStack iOS SDK allows you to integrate RudderStack to your iOS application in order to track event data from your app. After integrating this SDK, you will also be able to send this data to your preferred analytics destination/s such as Google Analytics, Amplitude, and more.
{% hint style="success" %} You can check the codebase on GitHub if you want to get more hands-on information or are keen to know the SDK architecture. {% endhint %}
To set up the RudderStack iOS SDK, there are a few prerequisites as mentioned below:
- You will need to set up a RudderStack Account.
- Once signed up, your
iOS
sourcewriteKey
will appear in the dashboard, as shown:
- You will also need your Data Plane URL. Simply put, the Data Plane URL is used to connect to the RudderStack backend for processing and routing your events.
{% hint style="info" %} To get the Data Plane URL:
-
If you're using the open-source version of RudderStack, you are required to set up your own data plane by installing and setting up RudderStack in your preferred dev environment.
-
If you're using the enterprise version of RudderStack, please contact us for the data plane URL with the email ID used to sign up for RudderStack. {% endhint %}
-
You will also need a Mac with the latest version of Xcode.
We distribute our iOS SDK through Cocoapods and Carthage. The recommended and easiest way to add the SDK to your project is through Podfile
. Follow these steps:
{% tabs %} {% tab title="CocoaPods" %}
- Add the RudderStack SDK to your
Podfile
, as shown:
pod 'Rudder'
- Then, run the following command:
pod install
{% endtab %}
{% tab title="Carthage" %}
- Add the RudderStack SDK to your
Cartfile
, as shown:
github "rudderlabs/rudder-sdk-ios"
- Then, run the following command:
carthage update
{% endtab %} {% endtabs %}
{% hint style="warning" %}
Important: Remember to include the following code in all .m
and .h
files or your .swift
files where you want to refer to or use RudderStack SDK classes.
{% endhint %}
{% tabs %} {% tab title="Objective-C" %}
#import <Rudder/Rudder.h>
{% endtab %}
{% tab title="Swift" %}
import Rudder
{% endtab %} {% endtabs %}
{% hint style="danger" %}
We use SQLite to save the events to local database before sending it to RudderStack data-plane. Making calls like SQLite.shutdown()
which is not thread-safe might lead to unexpected crash.
{% endhint %}
Put this code in your AppDelegate.m
file under the method didFinishLaunchingWithOptions
:
{% tabs %} {% tab title="Objective-C" %}
RSConfigBuilder *builder = [[RSConfigBuilder alloc] init];
[builder withDataPlaneUrl:DATA_PLANE_URL];
[RSClient getInstance:WRITE_KEY config:[builder build]];
A shared instance of RSClient
is accessible after the initialization by [RSClient sharedInstance]
.
{% endtab %}
{% tab title="Swift" %}
let builder: RSConfigBuilder = RSConfigBuilder()
.withDataPlaneUrl(DATA_PLANE_URL)
RSClient.getInstance(WRITE_KEY, config: builder.build())
A shared instance of RSClient
is accesible after the initialization by RSClient.sharedInstance()
{% endtab %}
{% endtabs %}
{% hint style="info" %} We automatically track the following optional events:
Application Installed
Application Updated
Application Opened
Application Backgrounded
You can disable these events using thewithTrackLifecycleEvents
method of RSConfigBuilder
and passing false
. However, it is highly recommended to keep them enabled.
{% endhint %}
RudderStack supports all the major API calls across all iOS devices via the SDK. These include the track
, identify
, and screen
calls.
RudderStack gives the users (e.g., an EU user) the ability to opt out of tracking any user activity until the user gives their consent. You can do this by leveraging RudderStack's optOut
API.
The optOut
API takes YES
or NO
as a Boolean value to enable or disable tracking user activities. This flag persists across device reboots.
The following snippet highlights the use of the optOut
API to disable user tracking::
{% tabs %} {% tab title="Objective-C" %}
[[RSClient sharedInstance] optOut:YES];
{% endtab %}
{% tab title="Swift" %}
RSClient.sharedInstance()?.optOut(true)
{% endtab %} {% endtabs %}
Once the user grants their consent, you can enable user tracking once again by using the optOut
API with NO
or false
as a parameter sent to it, as shown:
{% tabs %} {% tab title="Objective-C" %}
[[RSClient sharedInstance] optOut:NO];
{% endtab %}
{% tab title="Swift" %}
RSClient.sharedInstance()?.optOut(false)
{% endtab %} {% endtabs %}
{% hint style="info" %}
The optOut
API is available in the RudderStack iOS SDK starting from version 1.0.23
.
{% endhint %}
You can record the users' activity through the track
method. Every action performed by the user is called an event
.
An example track
event is as shown:
{% tabs %} {% tab title="Objective-C" %}
[[RSClient sharedInstance] track:@"simple_track_with_props" properties:@{
@"key_1" : @"value_1",
@"key_2" : @"value_2"
}];
{% endtab %}
{% tab title="Swift" %}
RSClient.sharedInstance()?.track("test_user_id", properties: [
"key_1": "value_1",
"key_2": "value_2"
])
{% endtab %} {% endtabs %}
The track
method accepts the following parameters:
Name | Data Type | Required | Description |
---|---|---|---|
eventName |
NSString |
Yes | Name of the event you want to track |
properties |
NSDictionary |
No | Extra data properties you want to send along with the event |
options |
RudderOption |
No | Extra event options |
We capture deviceId
and use that as anonymousId
for identifying the user. To attach more information to the user, you can use the identify
method. Once you set the identify
information to the user, those will be passed to the successive track
or screen
calls. To reset the user identification, you can use the reset
method.
{% hint style="info" %}
According to the Apple documentation, if the device has multiple apps from the same vendors, all those apps will be assigned the same deviceId
. If all the applications from a vendor are uninstalled, then on next install the app will be assigned a new deviceId
.
{% endhint %}
An example identify
event is as shown:
{% tabs %} {% tab title="Objective-C" %}
[[RSClient sharedInstance] identify:@"test_user_id"
traits:@{@"foo": @"bar",
@"foo1": @"bar1",
@"email": @"[email protected]",
@"key_1" : @"value_1",
@"key_2" : @"value_2"
}
];
{% endtab %}
{% tab title="Swift" %}
RSClient.sharedInstance()?.identify("test_user_id", traits: [
"key_1": "value_1",
"key_2": "value_2",
"email": "[email protected]"
])
{% endtab %} {% endtabs %}
The identify
method accepts the following parameters:
Name | Data Type | Required | Description |
---|---|---|---|
userId |
NSString |
Yes | Developer identity for the user. |
traits |
NSDictionary |
No | Traits information for user. Use dict method of RudderTraits to convert to NSDictionary easily |
options |
RudderOption |
No | Extra options for the identify event. |
You can use the screen
call to record whenever the user sees a screen on the mobile device. You can also send some extra properties along with this event.
An example of the screen
event is as shown:
{% tabs %} {% tab title="Objective-C" %}
[[RSClient sharedInstance] screen:@"ViewController"];
{% endtab %}
{% tab title="Swift" %}
RSClient.sharedInstance()?.screen("ViewController")
{% endtab %} {% endtabs %}
The screen
method accepts the following parameters:
Name | Data Type | Required | Description |
---|---|---|---|
screenName |
NSString |
Yes | Name of the viewed screen |
properties |
NSDictionary |
No | Extra property object that you want to pass along with the screen call |
options |
RudderOption |
No | Extra options to be passed along with the screen event |
The group
call associates a user to a specific organization. A sample group
call for the API is below:
{% tabs %} {% tab title="Objective-C" %}
[[RSClient sharedInstance] group:@"sample_group_id"
traits:@{@"foo": @"bar",
@"foo1": @"bar1",
@"email": @"[email protected]"}
];
{% endtab %}
{% tab title="Swift" %}
RSClient.sharedInstance()?.group("test_group_id", traits: [
"key_1": "value_1",
"key_2": "value_2"
])
{% endtab %} {% endtabs %}
Alternatively, you can use the following method signature
Name | Data Type | Required | Description |
---|---|---|---|
groupId |
String |
Yes | An ID of the organization with which you want to associate your user |
traits |
NSDictionary |
No | Any other property of the organization you want to pass along with the call |
options |
RudderOption |
No | Event level options |
We don't persist the traits for the group across the sessions.
The alias
call associates the user with a new identification. A sample alias
call for the API is below:
{% tabs %} {% tab title="Objective-C" %}
[[RSClient sharedInstance] alias:@"new_user_id"];
{% endtab %}
{% tab title="Swift" %}
RSClient.sharedInstance()?.alias("new_user_id")
{% endtab %} {% endtabs %}
Alternatively, you can use the following method signature
Name | Data Type | Required | Description |
---|---|---|---|
newId |
String |
Yes | The new userId you want to assign to the user |
options |
RudderOption |
No | Event level option |
We replace the old userId
with the newUserId
and we persist that identification across the sessions.
You can use the reset
method to clear the persisted traits
for the identify
call. This is required for the Logout
operations.
{% tabs %} {% tab title="Objective-C" %}
[[RSClient sharedInstance] reset];
{% endtab %}
{% tab title="Swift" %}
RSClient.sharedInstance()?.reset()
{% endtab %} {% endtabs %}
You can configure your client based on the following parameters using RudderConfigBuilder
:
Parameter | Type | Description | Default Value |
---|---|---|---|
logLevel |
int |
Controls how much of the log you want to see from the SDK. | RSLogLevelNone |
dataPlaneUrl |
string |
Your Data Plane URL. | https://hosted.rudderlabs.com |
flushQueueSize |
int |
Number of events in a batch request sent to the server. | 30 |
dbThresholdCount |
int |
Number of events to be saved in the SQLite database. Once the limit is reached, older events are deleted from the DB. |
10000 |
sleepTimeout |
int |
Minimum waiting time to flush the events to the server . | 10 seconds |
configRefreshInterval |
int |
Fetches the config from dashboard after the specified time (in hours). |
2 |
trackLifecycleEvents |
boolean |
Specify whether the SDK will capture application life cycle events automatically. | true |
recordScreenViews |
boolean |
Specify whether the SDK will capture screen view events automatically. | false |
controlPlaneUrl |
string |
This parameter should be changed only if you are self-hosting the Control Plane. Check the section Self-Hosted Control Plane below for more information. The iOS SDK will add /sourceConfig along with this URL to fetch the required configuration. |
https://api.rudderlabs.com |
If you are using a device mode destination like Adjust, Firebase, etc., the iOS SDK needs to fetch the required configuration from the Control Plane. If you are using the Control Plane Lite utility to host your own Control Plane, then follow this guide and specify controlPlaneUrl
in RudderConfigBuilder
that points to your hosted source configuration file.
{% hint style="warning" %}
You shouldn't pass the controlPlaneUrl
parameter during SDK initialization if you are using RudderStack Cloud. This parameter is supported only if you are using our open-source Control Plane Lite utility to self-host your Control Plane.
{% endhint %}
You can pass your device-token
for Push Notifications to be passed to the destinations which support Push Notification. We set the token
under context.device.token
.
Follow the instructions below:
[[[RSClient sharedInstance] getContext] putDeviceToken:@"your_device_token"];
We have kept IDFA collection completely separate from the Core library so that the developer has better control over the same. You can pass the IDFA to putAdvertisementId
method to set it under context.device.advertisingId
Follow the instructions below:
#import <AdSupport/ASIdentifierManager.h>
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
// Override point for customization after application launch.
RSConfigBuilder *builder = [[RSConfigBuilder alloc] init];
[builder withDataPlaneURL:[[NSURL alloc] initWithString:DATA_PLANE_URL]];
[RSClient getInstance:WRITE_KEY config:[builder build]];
[[[RSClient sharedInstance] getContext] putAdvertisementId:[self getIDFA]];
return YES;
}
- (NSString*) getIDFA {
return [[[ASIdentifierManager sharedManager] advertisingIdentifier] UUIDString];
}
You can pass the ATTrackingManager.trackingAuthorizationStatus to RudderStack and we'll pass it along to the relevant destinations wherever needed. For example AppsFlyer accepts this parameter for the attribution to work in their S2S mode.
Follow the instructions below:
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
// Override point for customization after application launch.
RSConfigBuilder *builder = [[RSConfigBuilder alloc] init];
[builder withDataPlaneURL:[[NSURL alloc] initWithString:DATA_PLANE_URL]];
[RSClient getInstance:WRITE_KEY config:[builder build]];
[[[RSClient sharedInstance] getContext] putAppTrackingConsent:RSATTAuthorize];
return YES;
}
Following are the available options you can pass to the putAppTrackingConsent
method.
RSATTNotDetermined
RSATTRestricted
RSATTDenied
RSATTAuthorize
We use the deviceId
as anonymousId
by default. You can use the following method to override and use your own anonymousId
with the SDK.
{% hint style="warning" %}
You need to call setAnonymousId
method before calling getInstance
{% endhint %}
An example of setting the anonymousId
is as below
[RSClient setAnonymousId:<ANONYMOUS_ID>];
The RudderStack iOS SDK allows you to enable or disable event flow to a specific destination or all the destinations to which the source is connected. You can specify these destinations by creating a RSOption
object as shown:
{% tabs %} {% tab title="Objective-C" %}
RSOption *option = [[RSOption alloc]init];
//default value for `All` is true
[option putIntegration:@"All" isEnabled:YES];
// specifying destination by its display name
[option putIntegration:@"Amplitude" isEnabled:YES];
[option putIntegration:@"<destination display name>" isEnabled:<BOOL>];
// specifying destination by its Factory instance
[option putIntegrationWithFactory:[RudderMoengageFactory instance] isEnabled:NO];
[option putIntegrationWithFactory:[<RudderIntegrationFactory> instance] isEnabled:<BOOL>];
{% endtab %}
{% tab title="Swift" %}
let option:RSOption = RSOption();
//default value for `All` is true
option.putIntegration("All", isEnabled:true)
// specifying destination by its display name
option.putIntegration("Amplitude", isEnabled:true)
option.putIntegration(<DESTINATION DISPLAY NAME>, isEnabled:<BOOL>)
// specifying destination by its Factory instance
option.putIntegration(with: RudderMoengageFactory.instance(), isEnabled: true);
option.putIntegration(with: <RudderIntegrationFactory>.instance(), isEnabled:<BOOL>);
{% endtab %} {% endtabs %}
{% hint style="info" %}
The keyword All
in the above snippet represents all the destinations the source is connected to. Its value is set to true
by default.
{% endhint %}
{% hint style="info" %}
Make sure the destination display name
you pass while specifying the custom destinations should exactly match the destination name as shown here.
{% endhint %}
You can pass the destination(s) specified in the above snippet to the SDK in two ways:
This is helpful when you want to enable/disable sending the events across all the event calls made using the SDK to the specified destination(s).
{% tabs %} {% tab title="Objective-C" %}
RSConfigBuilder *builder = [[RSConfigBuilder alloc] init];
[builder withDataPlaneURL:[[NSURL alloc] initWithString:DATA_PLANE_URL]];
[builder withLoglevel:RSLogLevelDebug];
[builder withTrackLifecycleEvens:YES];
[builder withRecordScreenViews:YES;
[RSClient getInstance:WRITE_KEY config:[builder build] options:option]; // passing the rudderoption object containing the list of destination(s) you specified
{% endtab %}
{% tab title="Swift" %}
let builder: RSConfigBuilder = RSConfigBuilder()
.withLoglevel(RSLogLevelDebug)
.withDataPlaneUrl(DATA_PLANE_URL)
.withTrackLifecycleEvens(true)
.withRecordScreenViews(true)
RSClient.getInstance(WRITE_KEY, config: builder.build(),options: option)// passing the rudderoption object containing the list of destination(s) you specified
{% endtab %} {% endtabs %}
This approach is helpful when you want to enable/disable sending only a particular event to the specified destination(s) or if you want to override the specified destinations passed with the SDK initialization for a particular event.
{% tabs %} {% tab title="Objective-C" %}
[[RSClient sharedInstance] track:@"simple_track_with_props" properties:@{
@"key_1" : @"value_1",
@"key_2" : @"value_2"
} options:option]; // passing the rudderoption object containing the list of destination(s) you specified
{% endtab %}
{% tab title="Swift" %}
let rudder: RSClient? = RSClient.sharedInstance()
rudder?.track("track_with_props", properties: [
"key_1": "value_1",
"key_2": "value_2",
],options:option) // passing the rudderoption object containing the list of destination(s) you specified
{% endtab %} {% endtabs %}
{% hint style="info" %} If you specify the destinations both while initializing the SDK as well as making an event call, then the destinations specified at the event level only will be considered. {% endhint %}
You can pass your custom userId
along with standard userId
in your identify
calls. We add those values under context.externalId
. The following code snippet shows a way to add externalId
to your identify
request.
RSOption *identifyOptions = [[RSOption alloc] init];
[identifyOptions putExternalId:@"brazeExternalId" withId:@"some_external_id_1"];
[[RSClient sharedInstance] identify:@"testUserId"
traits:@{@"firstname": @"First Name"}
options:identifyOptions];
If you run into any issues regarding the RudderStack iOS SDK, you can turn on the VERBOSE
or DEBUG
logging to find out what the issue is. To turn on the logging, change your RudderClient
initialization to the following:
{% tabs %} {% tab title="Objective-C" %}
RSConfigBuilder *builder = [[RSConfigBuilder alloc] init];
[builder withDataPlaneUrl:DATA_PLANE_URL];
[builder withLoglevel:RudderLogLevelDebug];
[RSClient getInstance:WRITE_KEY config:[builder build]];
{% endtab %}
{% tab title="Swift" %}
let builder: RSConfigBuilder = RSConfigBuilder()
builder.withDataPlaneUrl(<DATA_PLANE_URL>)
builder.withLoglevel(RudderLogLevelDebug)
RSClient.getInstance(<WRITE_KEY>, config: builder.build())
{% endtab %} {% endtabs %}
{% hint style="info" %} More information on the RudderStack Device Mode can be found in the RudderStack Connection Modes guide. {% endhint %}
Yes, you can develop a Device Mode destination by following these steps:
- Create a
CustomFactory.h
file by extendingRSIntegrationFactory
, as shown:
#import <Foundation/Foundation.h>
#import <Rudder/Rudder.h>
NS_ASSUME_NONNULL_BEGIN
@interface CustomFactory : NSObject<RSIntegrationFactory>
+ (instancetype) instance;
@end
NS_ASSUME_NONNULL_END
- Then, create a
CustomFactory.m
file, as shown:
#import <Foundation/Foundation.h>
#import <Rudder/Rudder.h>
#import "CustomFactory.h"
#import "CustomIntegration.h"
@implementation CustomFactory
+ (instancetype)instance {
static CustomFactory *sharedInstance;
static dispatch_once_t onceToken;
dispatch_once(&onceToken, ^{
sharedInstance = [[self alloc] init];
});
return sharedInstance;
}
- (instancetype)init
{
self = [super init];
return self;
}
- (nonnull NSString *)key {
return @"Custom Factory";
}
- (nonnull id<RSIntegration>)initiate:(NSDictionary *)config client:(nonnull RSClient *)client rudderConfig:(nonnull RSConfig *)rudderConfig {
return [[CustomIntegration alloc] initWithConfig:config withAnalytics:client];
}
@end
- Next, create a
CustomIntegration.h
file by extendingRSIntegration
.
#import <Foundation/Foundation.h>
#import <Rudder/Rudder.h>
NS_ASSUME_NONNULL_BEGIN
@interface CustomIntegration : NSObject<RSIntegration>
@property (nonatomic, strong) NSDictionary *config;
@property (nonatomic, strong) RSClient *client;
- (instancetype)initWithConfig:(NSDictionary *)config withAnalytics:(RSClient *)client;
@end
NS_ASSUME_NONNULL_END
- Next, create a
CustomIntegration.m
file.
#import <Foundation/Foundation.h>
#import <Rudder/Rudder.h>
#import "CustomIntegration.h"
@implementation CustomIntegration
- (instancetype) initWithConfig:(NSDictionary *)config withAnalytics:(RSClient *)client {
if (self == [super init]) {
}
return self;
}
- (void) processRuderEvent:(nonnull RSMessage *)message {
NSString *type = message.type;
if ([type isEqualToString:@"identify"]) {
// Do something
} else if ([type isEqualToString:@"track"]) {
// Do something
} else if ([type isEqualToString:@"screen"]) {
// Do something
} else {
[RSLogger logWarn:@"MessageType is not supported"];
}
}
- (void) dump:(nonnull RSMessage *)message {
[self processRuderEvent:message];
}
- (void) reset {
}
- (void) flush {
}
@end
- Register the
CustomFactory
with the RudderStack iOS SDK during its initialization, as shown:
RSConfigBuilder *builder = [[RSConfigBuilder alloc] init];
[builder withDataPlaneURL:[[NSURL alloc] initWithString:DATA_PLANE_URL]];
[builder withLoglevel:RSLogLevelDebug];
[builder withTrackLifecycleEvens:NO];
[builder withRecordScreenViews:NO];
[builder withCustomFactory:[CustomFactory instance]];
[RSClient getInstance:WRITE_KEY config:[builder build]];
Some pointers to keep in mind:
- RudderStack's iOS SDK dumps every event it receives to the
dump()
method of theCustomFIntegration
class. From here, you can process the event and hand it over to the native SDK of the Device Mode destination. - The SDK also triggers the
reset()
method of theCustomFactory
class on everyreset()
call made via the SDK. You can use this to handle the destination-specific reset logic. - Make sure you do not duplicate the value of
KEY
present insideCustomFactory
, across multipleCustomFactory
that you develop. - RudderStack's iOS SDK also triggers the
flush()
method of theCustomFactory
class on everyflush()
call made via the SDK, which you can use to handle the destination-specific reset logic. You can make aflush
call using the SDK as shown:
[[RSClient sharedInstance] flush];
If you're facing an issue with Carthage and XCode 12, you can follow this workaround suggested by the Carthage team.
Update the usage of the following classes as per the table below:
Previous Name | Updated Name |
---|---|
RudderClient
|
RSClient
|
RudderConfig
|
RSConfig
|
RudderConfigBuilder
|
RSConfigBuilder
|
RudderLogLevelDebug
|
Other |
You can get the user traits after making an identify
call in the following way:
{% tabs %} {% tab title="Swift" %}
let traits = RSClient.sharedInstance()?.getContext().traits
{% endtab %}
{% tab title="Objective-C" %}
NSDictionary* traits = [[RSClient sharedInstance] getContext].traits;
{% endtab %} {% endtabs %}
In case of client-side errors, e.g. if the source write key passed to the SDK is incorrect, RudderStack gives you a 400 Bad Request response and aborts the operation immediately. For other types of network errors (e.g. Invalid Data Plane URL), the SDK tries to flush the events to RudderStack in an incremental manner (every 1 second, 2 seconds, 3 seconds, and so on).
Why is there a larger difference between timestamp
and received_at
for iOS events vs. Android events?
This scenario is most likely caused by the default behavior of iOS apps staying open in the background for a shorter period of time after a user closes them.
When a user closes an iOS or Android app, events will still continue to be sent from the queue until the app closes in the background as well. Any events still in the queue will remain there until the user reopens the app. Due to this lag, there are some scenarios where there can be significant differences between timestamp
(when the event was created) and received_at
(when RudderStack actually receives the events).
For Android apps, events can be sent from the background after apps close for a longer period of time than iOS apps, therefore, more of the events coming from the Android SDK have closer timestamp
and received_at
times.
RudderStack does not integrate with SKAdNetwork. However, SKAdNetwork can be directly integrated into an iOS application alongside RudderStack.
Yes, you can.
RudderStack gives you the ability to disable tracking any user activity until the user gives their consent, by leveraging the optOut
API. This is required in cases where your app is audience-dependent (e.g. minors) or where you're using the app to track the user events (e.g. EU users) to meet the data protection and privacy regulations.
The optOut
API takes true
/ false
(in case of Swift) or YES
/ NO
(in case of Objective-C) as a value to enable or disable tracking user activities. So, to disable user tracking, you can use the optOut
API as shown:
{% tabs %} {% tab title="Objective-C" %}
[[RSClient sharedInstance] optOut:YES];
{% endtab %}
{% tab title="Swift" %}
RSClient.sharedInstance()?.optOut(true)
{% endtab %} {% endtabs %}
Once the user gives their consent, you can enable user tracking again, as shown:
{% tabs %} {% tab title="Objective-C" %}
[[RSClient sharedInstance] optOut:NO];
{% endtab %}
{% tab title="Swift" %}
RSClient.sharedInstance()?.optOut(false)
{% endtab %} {% endtabs %}
{% hint style="info" %}
For more information on the optOut
API, refer to the Enabling/Disabling User Tracking via optOut API (GDPR Support) section above.
{% endhint %}
{% hint style="success" %}
You only need to call the optOut
API with the required parameter only once, as the information persists within the device even if you reboot it.
{% endhint %}
If you come across any issues while using the RudderStack iOS SDK, you can contact us or start a conversation on our Slack channel.