我hook SpringBoard 的时候是成功的,lldb 连上去看道hooktest.dylib在里面.
但是换到 hook itunesstored 时,hooktest.dylib 就没给我加载。
filter 自动生成的长这样子:
{ Filter = { Bundles = ( “itunesstored” ); }; }
代码长这个样子,什么也没做。
#import <dlfcn.h>
attribute((constructor)) static void entry()
{
NSLog(@“hello world!”);
}