Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想用 Private API 生成一个 ipa 文件来测试 private-api 识别工具是否有效。有人可以告诉我如何找到这样的文件吗?谢谢。
最简单的方法是自己构建一个。
只需将此代码放在 .h 或 .m 文件的顶部:
@interface UIDevice() -(float)_backlightLevel; @end
在代码调用中:
float a = [[UIDevice currentDevice] _backlightLevel]; NSLog(@"Backlight level %f", a);
现在,您正在使用私有 API。