Skip to content
This repository has been archived by the owner on Jan 26, 2024. It is now read-only.

Latest commit

 

History

History
21 lines (13 loc) · 747 Bytes

c-acquisition-methods.md

File metadata and controls

21 lines (13 loc) · 747 Bytes

Acquisition methods

The following Acquisition methods are provided by the iOS library:

The following method is supported:

  • acquisitionCampaignStartForApp:data:

    Allows developers to start an app acquisition campaign as if the user had clicked a link. This is helpful for creating manual acquisition links and handling the app store redirect yourself, such as with an SKStoreView.

    • Here is the syntax for this method:

      + (void)acquisitionCampaignStartForApp:(NSString *) appId data:(NSDictionary *)data; 
    • Here is the code sample for this method:

      [ADBMobile acquisitionCampaignStartForApp:@"0652024f-adcd-49f9-9bd7-2552a4564d2f" data:@{@"custom.key":@"value"}];