我通过Xcode上传二进制文件后,来自Itunes的电子邮件到达时说我的应用程序有一个或多个问题,并描述:
select * from yahoo.finance.historicaldata
我没有在我的代码中的任何地方调用那些选择器,我搜索了所有选择器并且没有找到任何东西。也许应用程序的链接库之一正在调用那些选择器,但我找不到任何东西。
我尝试使用Appscanner进行搜索,但它已经过时且无法正常工作。
还添加了符号断点,但这些选择器仅由 Non-public API usage:
The app references non-public selectors in MY APP: _addRecorder:,
_playbackEvents:atPlaybackRate:messageWhenDone:withSelector:,
_removeRecorder:,
terminateWithSuccess
还有其他线索吗?
答案 0 :(得分:3)
最后使用简单的grep命令创建了有问题的框架:
grep -R '_addRecorder:' *
神奇了吗。