Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 4 Next »

Bir push mesajına tıklanması ile uygulamanın başlatılmasından sonra, kampanya parametrelerini göndermek için aşağıdaki yöntemi kullanın:

Objective-C
NSMutableDictionary *properties = [[NSMutableDictionary alloc] init];
[properties setObject:@"euromsg" forKey:@"utm_source"];
[properties setObject:@"push" forKey:@"utm_medium"];
[properties setObject:@"protein campaign" forKey:@"utm_campaign"];
[[Visilabs callAPI] customEvent:@"Login Page" withProperties:properties];


Swift
var properties = [String:String]()
properties["utm_source"] = "euromsg"
properties["utm_medium"] = "push"
properties["utm_campaign] = "protein campaign"
Visilabs.callAPI().customEvent("Login Page", withProperties: NSMutableDictionary(dictionary: properties))



Ana Başlık: iOS - Mobile Tagging


  • No labels