美文网首页
Method Swizzling处理数组越界

Method Swizzling处理数组越界

作者: 程序员都是傻子呀 | 来源:发表于2020-02-29 20:24 被阅读0次
    static dispatch_once_t onceToken;
    dispatch_once(&onceToken, ^{
        [objc_getClass("__NSArrayI")
            swizzleMethod:@selector(objectAtIndex:)
            withMethod:@selector(cf_objectAtIndex:)];
    });
    

    相关文章

      网友评论

          本文标题:Method Swizzling处理数组越界

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