Has anyone a one-line to find unused images in an XCode project? (Assuming all the files are referenced by name in code or the project files - no code generated file names.)

These files tend to build up over the life of a project and it can be hard to tell if it's safe to delete any given png.

link|improve this question

feedback

4 Answers

up vote 8 down vote accepted

For files which are not included in project, but just hang-around in the folder, you can press Cmd-Opt-A and they won't be grayed out.

For files which are not referenced neither in xib nor in code, something like this might work:


#!/bin/sh
PROJ=`find . -name '*.xib' -o -name '*.[mh]'`

for png in `find . -name '*.png'`
do
    name=`basename $png`
    if ! grep -q $name $PROJ; then
        echo "$png is not referenced"
    fi
done
link|improve this answer
feedback

I tried Roman's solution, and I added a few tweaks to handle retina images. It works well, but remember that image names can be generated programmatically in code, and this script would incorrectly list these images as unreferenced. For example, you might have

NSString *imageName = [NSString stringWithFormat:@"image_%d.png", 1];

This script will incorrectly think image_1.png is unreferenced.

Here's the modified script:

#!/bin/sh
PROJ=`find . -name '*.xib' -o -name '*.[mh]' -o -name '*.storyboard'`

for png in `find . -name '*.png'`
do
   name=`basename -s .png $png`
   name=`basename -s @2x $name`
   if ! grep -q $name $PROJ; then
        echo "$png"
   fi
done
link|improve this answer
what does the @2x do in the suffix switch for basename? – ThaDon Dec 31 '11 at 13:37
The first call to basename will delete the .png suffix and the second call deletes the @2x suffix. The suffixes are deleted from the filenames that find returns. It then looks for the basenames in $PROJ, which contains all the project filenames. – rob Jan 1 at 18:34
ah ok, so you actually have images named something@2x.png in your system? I thought perhaps @2x was some sort of weird regexp or directive that basename understood – ThaDon Jan 3 at 17:03
Yes, imagename@2x.png images are double size for the retina display. – rob Jan 3 at 19:57
feedback

This might be a more robust solution - it checks for any reference to the basename in any text file. Note the solutions above that didn't include storyboard files (completely understandable, they didn't exist at the time).

Ack makes this pretty fast, but there are some obvious optimizations to make if this script runs frequently. This code checks every basename twice if you have both retina/non-retina assets, for example.

#!/bin/bash

for i in `find . -name "*.png" -o -name "*.jpg"`; do 
    file=`basename -s .jpg "$i" | xargs basename -s .png | xargs basename -s @2x`
    result=`ack -i "$file"`
    if [ -z "$result" ]; then
        echo "$i"
    fi
done

# Ex: to remove from git
# for i in `./script/unused_images.sh`; do git rm "$i"; done
link|improve this answer
feedback

You can make a shell script that grep your source code and compare the founded images with your project folder.

Here the man(s) for GREP and LS

Easily you can loop all of your source file, save images in array or something equals and use

cat file.m | grep [-V] myImage.png

With this trick, you can search all images in your project source code!!

hope this helps!

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.