乱舞样品应用

时间:2010-07-09 03:39:39

标签: objective-c flurry

如何使用flurry sdk?有没有人对此有所了解。请通过示例代码告诉我。我想使用我的iPhone应用程序。

1 个答案:

答案 0 :(得分:2)

从dev.flurry.com下载flurry sdk

  1. 将sdk复制到您的项目中。
  2. appdelegate.h

    中的

      #import "FlurryAnalytics.h" 
      #import "FlurryAppCircle.h"
    
      @interface AppDelegate : UIResponder<UIApplicationDelegate,FlurryAdDelegate>
      {
      }
    
    appdelegate.m

    中的

    在应用程序didFinishLaunchingWithOptions

    中调用此函数
      [self flurryIntegration];
    
    
       - (void)flurryIntegration
       {
           [FlurryAnalytics startSession:flurryAppID];
          [FlurryAppCircle setAppCircleEnabled:YES]
       }
    

    在VIEWCONTROLLER.M

    在乱舞中记录错误。

     [FlurryAnalytics logError:@"1" message:exception.description exception:exception];
    

    记录事件/操作

      [FlurryAnalytics logEvent:[NSString stringWithFormat:@"Event name / Action name"]];
    

    打开接管

        [FlurryAppCircle setAppCircleEnabled:YES];
        [FlurryAppCircle
         openTakeover:@"STORE_APP_RECOMMEND"
         orientation:@"landscape"
         rewardImage:nil
         rewardMessage:nil
         userCookies:nil];
    

    打开录像带

        [FlurryClips setVideoAdsEnabled:YES];
        [FlurryClips openVideoTakeover:@"APP_SPLASH_HOOK"
                           orientation:@"portrait"
                           rewardImage:nil
                         rewardMessage:nil
                           userCookies:nil
                              autoPlay:YES];