如何获得“C” 书面框架 标题?
我有一个问题想问那些 iPhone 黑客。
使用私有 api 的人知道他们的私有标头是使用名为“class-dump”的工具转储的。 据我所知,这个工具只转储 Objective-C 标头。 有没有办法转储 C 头文件?
例如,GraphicsService,iPhone 上的一个框架。 有些人成功生成了它的标题。 他们是如何做到的呢? 我认为可能的方法是转储带有符号名称的标头。 但如何获得它们呢?
谢谢。
I have a question for those iPhone hackers.
People using private apis know that their private headers are dumped using a tool called 'class-dump'. As I know, this tool only dumps Objective-C headers. Is there any way to dump C headers?
For example, GraphicsService, a framework on iPhone. Some guys successfully generated its headers. How did they do it? I think the possible way is to dump the headers with the symbols' names. But how to get them?
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用“otool”来检查库。 您还会发现 Eclipse CDT 查看器也可以检查和打开库,这可能能够满足您的需要。
You can use 'otool' to inspect libraries. You'll also find that the Eclipse CDT viewer can inspect and open libraries as well, which may be able to give you what you need.