lpw
2022-02-15 dc2c0208d26c2f5bdce3b9f25f640052735a930a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
//
//  ShareInviteHelper.h
//  AppsFlyerLib
//
//  Created by Gil Meroz on 27/01/2017.
//
//
 
#import <Foundation/Foundation.h>
#import "AppsFlyerLinkGenerator.h"
 
/**
 AppsFlyerShareInviteHelper
 */
@interface AppsFlyerShareInviteHelper : NSObject
 
NS_ASSUME_NONNULL_BEGIN
 
/**
 *  The AppsFlyerShareInviteHelper class builds the invite URL according to various setter methods 
 *  which allow passing on additional information on the click. 
 *  This information is available through `onConversionDataReceived:` when the user accepts the invite and installs the app.
 *  In addition, campaign and channel parameters are visible within the AppsFlyer Dashboard.
 */
+ (void)generateInviteUrlWithLinkGenerator:(AppsFlyerLinkGenerator *(^)(AppsFlyerLinkGenerator *generator))generatorCreator completionHandler:(void (^)(NSURL *_Nullable url))completionHandler;
 
/**
 *  It is recommended to generate an in-app event after the invite is sent to log the invites from the senders' perspective. 
 *  This enables you to find the users that tend most to invite friends, and the media sources that get you these users.
 */
+ (void)logInvite:(nullable NSString *)channel parameters:(nullable NSDictionary *)parameters;
 
@end
 
NS_ASSUME_NONNULL_END