首页 > 代码库 > 友盟统计

友盟统计

<span style="background-color: rgb(51, 51, 153);">//
//  UMAnalyticsHelper.m
//  LJEUMAnalytics
//
//  Created by xiaoyao on 14/11/25.
//  Copyright (c) 2014年 lijien. All rights reserved.
//

#import "UMAnalyticsHelper.h"
#import "MobClick.h"

#define kUMAnalyticAppkey @"123455"
@implementation UMAnalyticsHelper

+ (void)startUMAnalytics {
  [MobClick startWithAppkey:kUMAnalyticAppkey reportPolicy:BATCH channelId:@"App Store"];
  
  // verison标识
  NSString *version = [[[NSBundle mainBundle] infoDictionary] objectForKey:@"CFBundleShortVersionString"];
  [MobClick setAppVersion:version];
  
#if DEBUG
  [MobClick setLogEnabled:YES];
#endif
  [MobClick setLogEnabled:NO];
  
  return;
}

+ (void)beginLogView:(__unsafe_unretained Class)pageView {
  [MobClick beginLogPageView:NSStringFromClass(pageView)];
  
  return;
}

+(void)endLogView:(__unsafe_unretained Class)pageView {
  [MobClick endLogPageView:NSStringFromClass(pageView)];
  
  return;
}
@end
</span>

友盟统计