iOS:hook实现无侵入式埋点、统计

今天来说说iOS的埋点。

不管是埋点,统计还是什么其他辟邪剑谱,主要的目的是为了了解用户行为习惯,进而开发出更友好的APP。
埋点的形式主要有:

1.统计页面停留时长
2.页面出现次数
3.按钮的点击次数

在技术上,埋点主要包括代码埋点、可视化埋点和全埋点。

埋点方式 优点 缺点
代码埋点(侵入式) 方便灵活,什么样的埋点都可以实现。包括各种奇葩埋点。 维护成本高,由于到处都是埋点的代码,所以清理维护难
可视化埋点/全埋点(非侵入式) 埋点统一维护,解耦。适用于大量通用的埋点 不适用所有,唯一标识难以确定,开发成本较大

侵入式埋点确实没什么可说的,主要是将埋点统计代码写在需要埋点的\color{rgb(255,0,0)}{view、viewControll} 的具体类里面,所以主要说说非侵入式埋点。

非侵入式埋点

利用\color{rgb(255,0,0)}{runtime},交换系统方法,并实现埋点逻辑

#import <objc/runtime.h>
@interface OBAspect : NSObject
+ (void)ob_hookTarget:(id)target originSelector:(SEL)osel newSelector:(SEL)nsel;
@end

@implementation OBAspect
//未做非空判断,实际还需要验证方法的实现是否完整
+ (void)ob_hookTarget:(id)target originSelector:(SEL)osel newSelector:(SEL)nsel {
    Method m1 = class_getInstanceMethod(target, osel);
    Method m2 = class_getInstanceMethod(target, nsel);
    method_exchangeImplementations(m1, m2);
}
@end

按钮这里最主要是,找到这个点击事件的方法\color{rgb(255,0,0)}{sendAction:to:forEvent:} ,然后在 \color(rgb(255,0,0)}{+load()} 方法使用 $\color{rgb(255,0,0)}{OBAspect hook}方法

@interface UIButton(OBCount)

@end

@implementation UIButton(OBCount)

+ (void)load {
    static dispatch_once_t onceToken;
    dispatch_once(&onceToken, ^{
        [OBAspect ob_hookTarget:self originSelector:@selector(sendAction:to:forEvent:) newSelector:@selector(ob_sendAction:to:forEvent:)];
    });
}

- (void)ob_sendAction:(SEL)action to:(id)target forEvent:(UIEvent *)event {
    NSLog(@"点击了[%@-%@-%@]",NSStringFromClass([target class]),NSStringFromSelector(action),self.titleLabel.text);
    [self ob_sendAction:action to:target forEvent:event];
}
@end

页面统计时:页面进入次数、页面停留时间都是对 \color{rgb(255,0,0)}{UIViewController} 生命周期函数进行\color{rgb(255,0,0)}{hook},然后埋点。创建一个 \color{rgb(255,0,0)}{UIViewController}\color{rgb(255,0,0)}{Category}

@interface UIViewController(OBCount)
@end

@implementation UIViewController(OBCount)
+ (void)load {
    static dispatch_once_t onceToken;
    dispatch_once(&onceToken, ^{
        [OBAspect ob_hookTarget:self originSelector:@selector(viewWillAppear:) newSelector:@selector(ob_viewWillAppear:)];
         [OBAspect ob_hookTarget:self originSelector:@selector(viewWillDisappear:) newSelector:@selector(ob_viewWillDisappear:)];
    });
}

- (void)ob_viewWillAppear:(BOOL)animated {
    NSLog(@"进入了%@",NSStringFromClass([self class]));
    [self ob_viewWillAppear:animated];
}
- (void)ob_viewWillDisappear:(BOOL)animated {
    NSLog(@"退出了%@",NSStringFromClass([self class]));
    [self ob_viewWillDisappear:animated];
}

然后运行

Test_Hook[11462:12348762] 进入了ViewController
Test_Hook[11462:12348762] 点击了[ViewController-loginClick:-登录]
Test_Hook[11462:12348762] 退出了ViewController
Test_Hook[11462:12348762] 进入了HomeViewController

注意:要找到\color{rgb(255,0,0)}{view}的唯一性,可以是多个信息组合,比如\color{rgb(255,0,0)}{NSStringFromClass([target class]),NSStringFromSelector(action)}组合,再不行加上\color{rgb(255,0,0)}{text}

如何对cell埋点?

推荐:无埋点和可视化埋点
UITableView的cell有缓存机制,每个cell的点击事件的埋点的关键是唯一标识符的制定规则;

唯一标识符的制定规则

利用\color{rgb(255,0,0)}{-(void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath}方法中下标,可以确定是点击的哪个cell,我们在制定\color{rgb(255,0,0)}{唯一标识符}的时候,可以是\color{rgb(255,0,0)}{HomeVC_1_2}这样的格式,表示在首页的tableView中,第1个section的第2个cell,这样就可以确定\color{rgb(255,0,0)}{唯一标识符},在根据这个\color{rgb(255,0,0)}{唯一标识符}可以去NSDictionary中查找对应的value,保存并上传数据。

  NSDictionary *dict = @{
                           @"HomeVC_1_0":@"男士",
                           @"HomeVC_1_1":@"女士",
                           @"HomeVC_1_2":@"儿童"
                           };
// 启动优化,load方法的逻辑延后执行
+ (void)initialize {
    static dispatch_once_t onceToken;
    dispatch_once(&onceToken, ^{
        //交换tableView的代理方法
        Method m1 = class_getInstanceMethod([self class], @selector(setDelegate:));
        Method m2 = class_getInstanceMethod([self class], @selector(setOBDelegate:));
        method_exchangeImplementations(m1, m2);
    });
}

//此处可以 获取 tableView的代理
- (void)setOBDelegate:(id<UITableViewDelegate>)delegate {
    Class cla = [delegate class];
    //1:拿到了代理,交换代理的点击方法
    SEL originalSelector = @selector(tableView:didSelectRowAtIndexPath:);
    SEL swizzledSelector = @selector(ob_tableView:didSelectRowAtIndexPath:);
    
    Method originalMethod = class_getInstanceMethod(cla, originalSelector);
    Method swizzledMethod = class_getInstanceMethod(cla, swizzledSelector);
  
    BOOL add = NO;
    //2:原方法可以肯定有,但是替换的方法不一定有。所以没有就要add
    if (swizzledMethod == nil) {
        //方法的实现是在self中,不能写在delegate中,否则耦合
        IMP imp = class_getMethodImplementation([self class], swizzledSelector);
        const char* types = method_getTypeEncoding(swizzledMethod);
        add = class_addMethod(cla, swizzledSelector, imp, types);
        
        swizzledMethod = class_getInstanceMethod(cla, swizzledSelector);
    }
    //3:两个方法都有了,交换方法实现
     method_exchangeImplementations(originalMethod, swizzledMethod);
    
    //设置原来的代理
    [self setOBDelegate:delegate];
}

- (void)ob_tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
    //code 埋点的代码逻辑
    
    [lock lock]; //写入文件时注意加锁
    //
    NSString * str = [NSString stringWithFormat:@"%ld-%ld",indexPath.section,indexPath.row];
    
   [lock unlock];
    
    
    [self ob_tableView:tableView didSelectRowAtIndexPath:indexPath];
}

cell的出现时长统计?

思路:在滑动停止时,对出现在屏幕上的cell做计时或者设置开始时间,然后页面消失或者滑动tableView时,再次停止时,对比前后的出现在屏幕上的cell,如果cell还在屏幕上,继续计时,如果cell滑出屏幕了,计时停止,并做好统计,更新,以便下次出现使用
可以hook UITableView 的\color{rgb(255,0,0)}{tableView:willDisplayCell:forRowAtIndexPath:}或者UICollectionView的\color{rgb(255,0,0)}{collectionView:willDisplayCell:forRowAtIndexPath:}方法

- (void)tableView:(UITableView *)tableView willDisplayCell:(UITableViewCell *)cell forRowAtIndexPath:(NSIndexPath *)indexPath {
    NSLog(@"cell------------");
}

- (void)collectionView:(UICollectionView *)collectionView willDisplayCell:(UICollectionViewCell *)cell forItemAtIndexPath:(NSIndexPath {

}

注意点:这个两个方法是实时调用的,考虑到性能,要等到页面滑动停止了,再开始计算,(如果滑动过程中就开始计算,那么是不正确的,因为滑动时,用户看不清楚)所以,计算要等到结束时计时,可以通过\color{rgb(255,0,0)}{[tableView performSelector:@selector(hlj_calculateViewVisible:) withObject:dict afterDelay:0 inModes:@[NSDefaultRunLoopMode]];},只有在切换到\color{rgb(255,0,0)}{NSDefaultRunLoopMode}才会计算

或者hook这两个函数:\color{rgb(255,0,0)}{tableView.visibleCells}\color{rgb(255,0,0)}{tableView.indexPathsForVisibleRows},也是可以得到当前屏幕中的cell,然后取差集。

\color{rgb(255,0,0)}{VisibleCells:}出现在屏幕上的cell,没有下标
\color{rgb(255,0,0)}{indexPathsForVisibleRows:}出现在屏幕上的cell,有下标,可以确定唯一标识符

如何取差集

利用一个记录上一次的cell的\color{rgb(255,0,0)}{lastDictionary}字典,第二次页面停止时会产生一个currentDictionary,遍历\color{rgb(255,0,0)}{currentDictionary},把里面的key取出来,然后去\color{rgb(255,0,0)}{lastDictionary}里面删除这个key(如果有这个key),那么最后剩下来的\color{rgb(255,0,0)}{lastDictionary}就是第一次出现在屏幕中,第二次消失的cell,对他计算统计,然后在需要将\color{rgb(255,0,0)}{lastDictionary}重新赋值。

埋点数据如何上传?

埋点分两种:一种是普通埋点,另一种是日志埋点;

1:普通埋点

满足三个条件上传:1:进入APP时;2:进入后台时;3:使用时

1:进入APP时

\color{rgb(255,0,0)}{-application: didFinishLaunchingWithOptions:}或者进入前台时,检测本地有没有埋点数据,有就上传。没有就不上传

如果系统crash,或者被kill时,需要将缓存中的数据保存到本地,下次打开上传。

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
    //去除埋点数据,有就上传,没有作罢
    NSDictionary *dict = [[MDManager shared] readDataFormManager];
    //注册crash时的回调,crash时,可以执行保存的操作
    NSSetUncaughtExceptionHandler(exceptionHandler);
    return YES;
    
}
// 系统crash时执行
void exceptionHandler(NSException *exception) {
    //保存数据
    [[MDManager shared] saveToDisk];
}
// 系统被回收时执行
- (void)applicationWillTerminate:(UIApplication *)application {
   //保存数据
    [[MDManager shared] saveToDisk];
}

2:进入后台时

进入后台时:有就上传。没有就不上传

3:使用时

如果设置数据上限,比如当数据大于 100k时,立即上传

注意:上传时,也有埋点数据,需要小心处理,不然会数据丢失

这里不加读写锁(或者是CGD的栅栏函数),目的是首先不加锁也能实现数据不丢失。其次加锁会对每次写入有额外的性能消耗。

- (void)uploadDataFromMemory {
    NSDictionary * updict = [self.dict copy];
    dispatch_queue_t q = dispatch_queue_create("ob", DISPATCH_QUEUE_CONCURRENT);
    dispatch_async(q, ^{
        
        // code .. 上传代码
        //上传成功后删,除上传的部分
        [updict enumerateKeysAndObjectsUsingBlock:^(id  _Nonnull key, id  _Nonnull obj, BOOL * _Nonnull stop) {
            [self.dict removeObjectForKey:key];
        }];
        
    });
}

部分cell埋点代码

#import "UITableView+MDTableView.h"
#import <objc/runtime.h>
#import "MDManager.h"

@implementation UITableView (MDTableView)
+ (void)load {
    static dispatch_once_t onceToken;
    dispatch_once(&onceToken, ^{
        Method m1 = class_getInstanceMethod([self class], @selector(setDelegate:));
        Method m2 = class_getInstanceMethod([self class], @selector(setMDDelegate:));
        method_exchangeImplementations(m1, m2);
    });
}
+ (void)initialize {
    
}

- (void)setMDDelegate:(id<UITableViewDelegate>)delegate {
    
    SEL s1 = @selector(tableView:willDisplayCell:forRowAtIndexPath:);
    Method m1 = class_getInstanceMethod([delegate class], s1);
    if (m1 == nil) {
        SEL s1_no = @selector(MD_No_tableView:willDisplayCell:forRowAtIndexPath:);
        Method m1_no = class_getInstanceMethod([self class], s1_no);
        IMP imp1 = method_getImplementation(m1_no);
        const char * types_s1 = method_getTypeEncoding(m1_no);
        BOOL add_m1 = class_addMethod([delegate class], s1, imp1, types_s1);
        if (add_m1) {
            //
            m1 = class_getInstanceMethod([delegate class], s1);
        } else {
            //
        }
    }
    
    SEL s2 = @selector(MD_tableView:willDisplayCell:forRowAtIndexPath:);
    Method m2 = class_getInstanceMethod([self class], s2);
    IMP imp2 = method_getImplementation(m2);
    const char * types = method_getTypeEncoding(m2);
    BOOL add = class_addMethod([delegate class], s2, imp2, types);
//
    if (add) {
        Method m22 = class_getInstanceMethod([delegate class], s2);
        method_exchangeImplementations(m1, m22);
    }
    
//hook
    
    [self setMDDelegate:delegate];
}

- (void)MD_tableView:(UITableView *)tableView willDisplayCell:(UITableViewCell *)cell forRowAtIndexPath:(NSIndexPath *)indexPath {
    NSDictionary * dict = @{@"cell":cell,@"indexPath":indexPath,@"tableView":tableView};
    [tableView performSelector:@selector(hlj_calculateViewVisible:) withObject:dict afterDelay:0 inModes:@[NSDefaultRunLoopMode]];
    [self MD_tableView:tableView willDisplayCell:cell forRowAtIndexPath:indexPath];
}

- (void)hlj_calculateViewVisible:(NSDictionary *)dict {
    UIView * view = dict[@"cell"];
    NSIndexPath *ip = dict[@"indexPath"];
    UITableView *tb = dict[@"tableView"];
    NSString *str = [NSString stringWithFormat:@"%@_%@_%@_",[tb.delegate class],[tb class],[view class]];
    [[MDManager shared] viewExposure:[NSString stringWithFormat:@"%@%ld-%ld",str,(long)ip.section,(long)ip.row]];
}

- (void)MD_No_tableView:(UITableView *)tableView willDisplayCell:(UITableViewCell *)cell forRowAtIndexPath:(NSIndexPath *)indexPath {
    NSLog(@"========");
}

@end

参考链接:https://blog.csdn.net/pk_sir/article/details/107177963

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 202,529评论 5 475
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 85,015评论 2 379
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 149,409评论 0 335
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,385评论 1 273
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,387评论 5 364
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,466评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 37,880评论 3 395
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,528评论 0 256
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,727评论 1 295
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,528评论 2 319
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,602评论 1 329
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,302评论 4 318
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,873评论 3 306
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,890评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,132评论 1 259
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 42,777评论 2 349
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,310评论 2 342

推荐阅读更多精彩内容