如何使用flurry sdk?有没有人对此有所了解。请通过示例代码告诉我。我想使用我的iPhone应用程序。
答案 0 :(得分:2)
从dev.flurry.com下载flurry sdk
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];