美文网首页
hook NSArray 方法在debug模式下会崩溃, 在re

hook NSArray 方法在debug模式下会崩溃, 在re

作者: 西博尔 | 来源:发表于2016-07-15 15:49 被阅读27次

    配合hook的使用

    - (id)hook_objectAtIndex:(NSUInteger)index
    
    {
    
        if (index < self.count) {
    
            return [self hook_objectAtIndex:index];
    
        } else {
    
    #ifdef DEBUG
    
            AC_Assert(NO);
    
            NSAssert2(YES, @"aaaaa%d , count %d", index, 2);
    
    #endif
    
            return nil;
    
        }
    
    }
    

    相关文章

      网友评论

          本文标题:hook NSArray 方法在debug模式下会崩溃, 在re

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