Batch.com SDK 集成 您可以使用以下方法之一实现 Adjust SDK 与 Batch.com 事件的集成。 操作前须知 要使用该功能,请先下载并设置 Adjust iOS SDK。 要集成 Adjust 和 Batch.com SDK,您需要将归因发送到 Batch.com SDK。收到 Adjust 服务器响应后,您应该发送此信息。为此,请按照归因回传设置指南中的步骤进行操作。 示例 您可通过以下方式设置回传方法: - (void)adjustAttributionChanged:(ADJAttribution *)attribution { // initiate Batch user editor to set new attributes BatchUserDataEditor *editor = [BatchUser editor]; if (attribution.network != nil) [editor setAttribute:attribution.network forKey:@"adjust_network"]; if (attribution.campaign != nil) [editor setAttribute:attribution.campaign forKey:@"adjust_campaign"]; if (attribution.adgroup != nil) [editor setAttribute:attribution.adgroup forKey:@"adjust_adgroup"]; if (attribution.creative != nil) [editor setAttribute:attribution.creative forKey:@"adjust_creative"]; // send new attributes to Batch servers [editor save];}