配合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;
}
}
网友评论