如何删除xcode项目中不再使用的图片资源
Posted 日常
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何删除xcode项目中不再使用的图片资源相关的知识,希望对你有一定的参考价值。
1. 利用工具 下载地址 http://jeffhodnett.github.io/Unused/ 运行效果如下
2. 通过终端 执行 shell 命令
a. 第一步建立.sh 文件 如 unusedImage.sh
- #!/bin/sh
- PROJ=`find . -name ‘*.xib‘ -o -name ‘*.[mh]‘`
- for png in `find . -name ‘*.png‘`
- do
- name=`basename $png`
- if ! grep -qhs "$name" "$PROJ"; then
- echo "$png is not referenced"
- fi
- done
b. 进入你要查找的工程目录下执行 这段 shell 脚本
- sh unusedImage.sh
运行结果如下
以上是关于如何删除xcode项目中不再使用的图片资源的主要内容,如果未能解决你的问题,请参考以下文章