iPhone 私有 API
如何向 iPhone 应用程序添加私有 API 和框架。比如Apple80211。
How to add private APIs and frameworks to an iPhone App. Like Apple80211.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
如何向 iPhone 应用程序添加私有 API 和框架。比如Apple80211。
How to add private APIs and frameworks to an iPhone App. Like Apple80211.
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(2)
假设您问“如何调用在私有 API 中声明的函数”,此应用 将向您展示如何操作。查看
-[MSNetworksManager init]
。void * dlopen(const char*, int)
是您要查找的函数,在dlcfn.h
中声明,使用方式如下:Assuming you're asking "how do I call a function declared in a private API", this app will show you how. Look in
-[MSNetworksManager init]
.void * dlopen(const char*, int)
is the function you're looking for, declared indlcfn.h
, used like this:请不要使用任何私有 API,因为 Apple 很可能会拒绝您的申请。
Please do not use any private APIs since there is every chance that Apple will reject your application.