如何使用IOS中的Flurry Analytics跟踪年龄和性别

时间:2014-04-07 13:11:18

标签: ios objective-c flurry

我在我的应用程序中使用Flurry 4.4.0。

每当用户更新他的性别和年龄时,我都在调用以下方法。此方法位于AppDelegate,我在视图控制器中调用时适用于[appDelegate flurryMethodCall]。

-(void)flurryMethodCall
{


    dispatch_async(dispatch_get_global_queue( DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^(void){
        dispatch_async(dispatch_get_main_queue(), ^(void){

            [Flurry setAge:16]; // this value will change
            //Use this to log the user's age after identifying the user. Valid inputs are 0 or greater.
            [Flurry setGender:@"f"];//this value will change

            [Flurry setCrashReportingEnabled:YES];
            //note: iOS only allows one crash reporting tool per app; if using another, set to: NO


            [Flurry startSession:@"MY_API_KEY"];


        });
    });
}

当用户编辑他的性别和年龄时,我需要使用Flurry Analytics将这些信息存储为个人记录。

当我去Flurry网站时,它显示如下,尽管我称之为Flurry方法。

您目前没有跟踪年龄数据。

赞赏任何建议和想法......!

先谢谢..

0 个答案:

没有答案