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