Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Possible Duplicate:
iPhone Interface Builder - Moved resources to sub-directory, now IB can't see them!

There is a Folder Reference that contains my images in Xcode. I want to load an image from that image into an UIImageView inside of Xcode rather than programmatically, so I can visually design the interface.

Not only do the images in that folder not appear in the Image View->Image drop-down menu in Interface Builder, the images don't show up when I manually type in the path.

share|improve this question
1  

marked as duplicate by Bill the Lizard Oct 27 '11 at 14:57

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

1 Answer

Try putting the images into the Resources folder in Xcode instead of your folder reference. Also, make sure the images have been added to the target from which you want to be able to access the images. To do this:

  1. Select the image in the Groups & Files column in Xcode
  2. Right-click on the image and select Get Info
  3. In the Info window that comes up, select the Targets tab
  4. Check the boxes next to the targets that you need to be able to access this file from
share|improve this answer
   
I've always done that before, I don't want to use that method anymore. The images are being added to the target because I am able to use them programmatically. – Cirrostratus Nov 11 '10 at 22:10

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