iPhone:是否有一种自动方法来识别未使用的资源?
当我开发我的应用程序时,我导入并合并了很多图像、声音等。我想我可以编写一个 shell 脚本来 grep 源代码,但我想知道是否有一个现有的可以识别任何我的项目中未使用的资源。
谢谢!
As I've developed my app, I have imported and incorporated a lot of images, sounds, etc. I guess I could just write a shell script that greps the source code, but I'm wondering if there's an existing that will identify any unused resources in my project.
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不,也不可能存在,因为可以通过多种方式使用资源而无需应用程序源中的任何引用。 例如,推送通知服务采用应用程序包中的声音文件的名称,因此即使应用程序本身没有引用,所有可用于推送通知的格式的声音文件也可能不会被使用。 还有其他类似的情况。
显然,如果您知道发生了什么,您可以编写一些脚本来处理删除资源,但我绝不会期望看到 Xcode 提供类似的功能。
No, and there can't be since there are ways in which resources may be used without any reference within the app source. The push notification service takes the name of a sound file in your app bundle for instance, so all sound files that are in formats usable for push notifications may not be unused even if there is no reference in the app itself. There are other similiar situations as well.
Obviously you can write some scripts to handle removing resource if you know what is going on, but I would never expect to see Xcode provide anything like this functionality.