iPhone 私有 API

发布于 2024-08-29 04:12:13 字数 48 浏览 5 评论 0原文

如何向 iPhone 应用程序添加私有 API 和框架。比如Apple80211。

How to add private APIs and frameworks to an iPhone App. Like Apple80211.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

莫多说 2024-09-05 04:12:13

假设您问“如何调用在私有 API 中声明的函数”,此应用 将向您展示如何操作。查看-[MSNetworksManager init]

void * dlopen(const char*, int) 是您要查找的函数,在 dlcfn.h 中声明,使用方式如下:

int (*scan)(void *, NSArray **, void *);
void *libHandle = dlopen("/System/Library/Frameworks/Preferences.framework/Preferences", RTLD_LAZY);
scan = dlsym(libHandle, "Apple80211Scan");

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 in dlcfn.h, used like this:

int (*scan)(void *, NSArray **, void *);
void *libHandle = dlopen("/System/Library/Frameworks/Preferences.framework/Preferences", RTLD_LAZY);
scan = dlsym(libHandle, "Apple80211Scan");
仅冇旳回忆 2024-09-05 04:12:13

请不要使用任何私有 API,因为 Apple 很可能会拒绝您的申请。

Please do not use any private APIs since there is every chance that Apple will reject your application.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文