We don’t allow questions seeking recommendations for software libraries, tutorials, tools, books, or other off-site resources. You can edit the question so it can be answered with facts and citations.
Closed 9 years ago.
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(4)
这里是从 iPhone OS 2.2.1 到 iOS 9.2 的可搜索档案
https://github.com/nst/ iOS-运行时-标头
here are searchable archives from iPhone OS 2.2.1 to iOS 9.2
https://github.com/nst/iOS-Runtime-Headers
最有可能的。 只需使用命令行应用程序
class-dump
即可查看私有标头。 请注意,如果您在编译时链接,您的应用程序将因链接到私有框架而被 App Store 拒绝。 如果在编译时链接,很容易看出您通过在二进制文件上运行otool
来链接私有框架。Most likely. Just use the command line application
class-dump
to view the private headers. Note that your app will be rejected from the App Store for linking to private frameworks if you link at compile. It is easy enough to see that you are linking the private frameworks by runningotool
on your binary if linked at compile.这些是由 iOS 类转储程序 class-dump-z 生成的可编译标头:
http://github.com/kennytm/iphone-private-frameworks
These are the compilable headers generated by class-dump-z, a iOS class dumper:
http://github.com/kennytm/iphone-private-frameworks
您可能还会发现我的“private-dumper”ruby gem 很有用: http://rubygems.org/gems/private -自卸车
You might also find my "private-dumper" ruby gem useful: http://rubygems.org/gems/private-dumper