有没有办法检测应用在运行时加载了哪些动态库?我查看了 Apple 的 documentation对于动态库,但似乎没有讨论这个。
获取应用程序在运行时加载的所有库的列表:
// import the dynamic linker API
#import <mach-o/dyld.h>
// After your application finishes launching, maybe in
// -application:didFinishLaunchingWithOptions:
int imageCount = _dyld_image_count();
for (int i=0; i < imageCount; i++) {
NSLog(@"%d - %s", i, _dyld_get_image_name(i));
}
如果要在每次加载库时调用一个函数,可以使用 _dyld_register_func_for_add_image()
或 _dyld_register_func_for_link_module()
重要提示我只在模拟器中检查过。我认为它应该可以在设备上运行,但我现在还有其他事情需要处理。
Apple 文档从这里开始:https://developer.apple.com/library/prerelease/mac/documentation/DeveloperTools/Reference/MachOReference/
这里有一篇关于遍历mach header信息的有趣博客文章:
http://ddeville.me/2014/04/dynamic-linking/
关于ios - 如何检测动态库负载,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34759368/
欢迎光临 OStack程序员社区-中国程序员成长平台 (https://ostack.cn/) | Powered by Discuz! X3.4 |