本文介绍了Xcode将框架的.m文件存储在哪里?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
在Xcode中,有许多框架(例如mkmapkit.framework).
In Xcode there are many frameworks (like mkmapkit.framework).
此框架仅包含.h(头)文件.在哪里可以找到相应的.m(实现)文件.
This framework contains only .h (header) files. Where can I find the corresponding .m (implementation) files.
推荐答案
查看实现的唯一方法是使用此问题中所述的工具对框架静态库进行反编译:
The only way to see the implementation is to decompile the frameworks static library with tools like those described in this question:
由于您可能感兴趣的框架通常会去除符号,因此了解正在发生的事情将有些艰巨,但是您可以从诸如此类的工具中收集一些信息.
Since the frameworks you are probably interested in will generally have symbols stripped, it will be a bit of a task understanding what is going on but you can glean some things from tools like these.
这篇关于Xcode将框架的.m文件存储在哪里?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!