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