美文网首页
iOS+AOP+切片+运行时

iOS+AOP+切片+运行时

作者: 口子窖 | 来源:发表于2021-07-14 11:50 被阅读0次

iOS+AOP+切片+运行时

有时候有这样的需求,对于非源码的库我们想要干涉原先的代码执行过程,常见的使用场景就是埋点,当然可以使用现成的第三方框架,aspect。

1、场景

想要在VC的viewWillAppear的执行开始和执行结束分别插入我们想要执行的代码

UIViewController+VCAOP.h

#import <UIKit/UIKit.h>

NS_ASSUME_NONNULL_BEGIN

@interface UIViewController (VCAOP)

@end

NS_ASSUME_NONNULL_END

UIViewController+VCAOP.m

#import "UIViewController+VCAOP.h"
#import <objc/runtime.h>
@implementation UIViewController (VCAOP)
+ (void)load
{
    static dispatch_once_t onceToken;
    dispatch_once(&onceToken, ^{
        void(^aspect)(SEL,SEL) = ^(SEL swizsel,SEL origsel) {
            Method origMethod = class_getInstanceMethod([UIViewController class], origsel);
            Method swizMethod = class_getInstanceMethod([self class], swizsel);
            //class_getInstanceMethod 返回类的实例方法
            BOOL addMehtod = class_addMethod([UIViewController class], origsel, method_getImplementation(swizMethod), method_getTypeEncoding(swizMethod));
            //把新的方法加入到目标类中
            if (addMehtod) {
                class_replaceMethod([UIViewController class], swizsel, method_getImplementation(origMethod), method_getTypeEncoding(origMethod));
            }else {
                method_exchangeImplementations(origMethod, swizMethod);
            }
        };
        aspect(@selector(viewDidLoadA),@selector(viewDidLoad));
    });
}
- (void)viewDidLoadA
{
    [self before];
//这里不会无限循环的,因为已经被替换成viewDidLoad了
    [self viewDidLoadA];
    [self after];
}
- (void)before
{
    NSLog(@"开始执行viewWillAppear");
}
- (void)after
{
    NSLog(@"结束执行viewWillAppear");
}
@end

这样的话就实现了在viewDidLoad方法执行之前和之后添加想要的代码,但是对于类簇有个例外,所谓类簇见 下文

NSMutableArray+arrayAOP.h

#import <Foundation/Foundation.h>
NS_ASSUME_NONNULL_BEGIN
@interface NSMutableArray (arrayAOP)
@end
NS_ASSUME_NONNULL_END

NSMutableArray+arrayAOP.m

#import "NSMutableArray+arrayAOP.h"
#import <objc/runtime.h>
@implementation NSMutableArray (arrayAOP)
+ (void)load
{
    static dispatch_once_t onceToken;
    dispatch_once(&onceToken, ^{
        void(^aspect)(SEL,SEL) = ^(SEL swizsel,SEL origsel) {
            Method origMethod = class_getInstanceMethod(objc_getClass("__NSArrayM"), origsel);
            Method swizMethod = class_getInstanceMethod([self class], swizsel);
            
            BOOL addMehtod = class_addMethod([self class], swizsel, method_getImplementation(swizMethod), method_getTypeEncoding(swizMethod));
            if (addMehtod)
            {
                class_replaceMethod([self class], swizsel, method_getImplementation(origMethod), method_getTypeEncoding(origMethod));
            }
            else
            {
                method_exchangeImplementations(origMethod, swizMethod);
            }
        };
        SEL swizsel = @selector(addObjectA:);
        SEL origsel = @selector(addObject:);
        aspect(swizsel,origsel);
    });
}

- (void)addObjectA:(id)anObject
{
    if (anObject) {
        [self addObjectA:anObject];
    }else {
        NSLog(@"数组插入nil,要崩溃了");
        [self addObjectA:@"[nil]"];
        NSLog(@"避开崩溃,数组插入nil");
    }
    
}
@end

因为NSMutableArray类型,在实际实例化之后,就是私有类了,需要通过objc_getClass("__NSArrayM")来获取类

相关文章

  • iOS+AOP+切片+运行时

    iOS+AOP+切片+运行时 有时候有这样的需求,对于非源码的库我们想要干涉原先的代码执行过程,常见的使用场景就是...

  • GO-1.9做了哪些性能优化?

    1. 调用带内联框架的堆栈 运行时的用户应避免直接检查所产生的PC切片,而应使用runtime.CallersFr...

  • go-runtime/pprof

    软件包 pprof主要功能是可视化工具所期望的格式写入运行时的分析数据 获取所有已知profile的切片,按名称排...

  • 15.Go_Slice(切片)

    Go 切片 定义切片 切片初始化 len()和cap()函数 空(nil)切片 切片拦截 append() 和co...

  • Python的高级特性

    切片 list切片 tuple切片 str切片 迭代 在Python中迭代是通过for ... in ...来实现...

  • 切片

    切片前的准备 1切片前,备份图片;切片后,也要保存文件,为日后修改做准备。 2切片前设置切片文件夹(?不懂) 切片...

  • 你能一口说出go中字符串转字节切片的容量嘛?

    神奇的现象 切片, 切片, 又是切片! 前一篇文章讲的是切片, 今天遇到的神奇问题还是和切片有关, 具体怎么个神奇...

  • 【golang】slice底层函数传参原理易错点

    切片底层结构 切片的底层结构主要包括引用数组的地址data,切片长度len与切片容量cap。 以切片为参数调用函数...

  • day02-07clice

    切片slise 切片的定义 初始化 长度len和容量cap 由数组得到切片 切片的容量cap是指底层数组从切片的第...

  • Mapreduce切片机制

    FileInputFormat切片机制 切片机制:简单的按照文件的内容长度进行切片切片大小,默认等于Block大小...

网友评论

      本文标题:iOS+AOP+切片+运行时

      本文链接:https://www.haomeiwen.com/subject/sadspltx.html