views:

27

answers:

0

Could someone please help with implementation details for Omniture's app measurement iphone library ? I have linked both the dev and release libraries into my app, I instantiate them using the singleton method (getInstance) and they call the 'track' method on the instance....something along these lines.

OMAppMeasurement *s = [OMAppMeasurement getInstance];
s.account = @"";
s.debugTracking = YES;
[s track];

I cannot see any data on my dashboards, the s.account has a value, but I'm not sure if I'm supplying the correct one. Could some confirm what that value should be? I'm I missing out something fundamental here, as far as I can see I'm following the (very very light )online documentation by the book. Could someone help ?