能力值:
( LV2,RANK:10 )
|
-
-
2 楼
MSHookFunction
|
能力值:
( LV2,RANK:10 )
|
-
-
3 楼
|
能力值:
( LV2,RANK:10 )
|
-
-
4 楼
xinyangs
楼上能不能详细点呢,我知道是MSHookFunction
官方文档那么详细,看不懂?
|
能力值:
( LV3,RANK:20 )
|
-
-
5 楼
在xm文件里这么写 //void *malloc(size_t size); void (*orig_malloc)(size_t size); void replaced_malloc(size_t size) { orig_malloc(size); if(size == 0xaa) { NSLog(@"malloc hooked!0xaa"); } }
%ctor { @autoreleasepool { MSHookFunction((void *)malloc, (void *)replaced_malloc, (void **)&orig_malloc); } }
|
能力值:
( LV2,RANK:10 )
|
-
-
6 楼
谢谢5楼,搞定了
|
|
|