IOS: find out if image is being used in any xib

I want to know which images in the project are really used. When I try to find the names of images that were installed programmatically, I can see them in the corresponding classes when searching. This does not apply to images that were installed in xib. Is there a workaround to find if an image is being used in any xib?

screenshot

+7
source share
2 answers

Try using the Unused utility application by Jeff Hodnett. I have used it before and have had success with it.

+7
source

You can on the command line, yes.

As always, grep is your friend:

 $ cd ~Source/Books/Beginning iOS 6 Development/ch04/Control Fun/Control Fun/en.lproj $ grep png * BIDViewController.xib: <string key="NSResourceName">apress_logo.png</string> BIDViewController.xib: <string key="NS.key.0">apress_logo.png</string> 
+2
source

All Articles