gpt4 book ai didi

ios - 如何检测动态库加载

转载 作者:塔克拉玛干 更新时间:2023-11-02 19:55:50 26 4
gpt4 key购买 nike

有没有办法检测应用程序在运行时加载了哪些动态库?我浏览了 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 头信息的有趣博客文章:

http://ddeville.me/2014/04/dynamic-linking/

关于ios - 如何检测动态库加载,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34759368/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com