I am trying to use UIImagePickerController with UIImagePickerControllerSourceTypePhotoLibrary, but it says, "No photos". Where does the simulator get the images from? Where should I copy the images so that they are displayed in the simulator?

link|improve this question

60% accept rate
feedback

6 Answers

up vote 53 down vote accepted

Go to ~/Library/Application Support/iPhone Simulator/User/Media/DCIM/100APPLE/ and add IMG_nnnn.THM and IMG_nnnn.JPG. It doesn't matter if they are not JPEGs - they can both be PNGs, but it appears that both of them must be present for it to work. You may need to create DCIM if it doesn't already exist, and in that case you should start nnnn from 0001. The JPG files are the fullsize version, while the THM files are the thumbnail, and are 75x75 pixels in size. I wrote a script to do this, but there's a better documented one over here.

You can also add photos from safari in the simulator, by Tapping and Holding on the image. If you drag an image (or any other file, like a PDF) to the simulator, it will immediately open Safari and display the image, so this is quite an easy way of getting images to it.

link|improve this answer
Under iPhone SDK 3.0, this has changed just a bit. Now, the thumbnail files (".THM") need to go under 100APPLE/.MISC. Otherwise, all the photos will appear as black boxes. – mtnygard Sep 3 '09 at 21:50
How do I update the icon on the Saved Photos cell in the main Photo Album table view? – sbwoodside Nov 3 '09 at 20:39
2  
My location is at ~/Library/Application Support/iPhone Simulator/3.1.3/Media/DCIM/100APPLE – Gerald Kaszuba Apr 7 '10 at 3:26
how do you get the .thm files from images coming from an iPhone? – Kamchatka Jun 15 '10 at 23:23
Note: You can also add videos to the simulator using this method as well. – Answerbot Feb 25 '11 at 2:45
show 1 more comment
feedback

Explain step by step of Airsource Ltd's answer for adding image to simulator:

  1. Drag it to simulator, then Safari opens (or browse to the Image in the internet using Safari)
  2. Hold your click on the image
  3. When the pop-up appears, choose Save Image and enjoy ;)

Update: for iOS Simulator 4.2, do these steps twice to get it work. Thanks kevboh!

link|improve this answer
This doesn't work for me with iOS simulator Version 4.2 (235). I can run through steps 1-3 fine, but when I go to "Photos" I don't see anything. – Mark Fowler Feb 28 '11 at 7:58
2  
I had to do it twice to get it to work. Don't know why. – kevboh Mar 8 '11 at 14:35
This works great. Thanks. – ayaz Mar 11 '11 at 7:29
1  
This worked for me when I had no apps open, when I had an app open it went through the same steps but didn't actually work. – TreeUK Jul 11 '11 at 9:25
1  
wow...perfect answer...so easy to add – Aditya Nov 4 '11 at 6:45
show 2 more comments
feedback

3 Simple Steps

1) Drag & Drop image onto simulator
- this will open a browser with your image
2) Click & hold image
- this will open options
3) save image
- this will copy image onto simulator
Watch YouTube Video ( add images to iphone simulator)

link|improve this answer
Thanks for the nice and easy path.. :) – Sarah Feb 12 '11 at 5:22
works in ios5 :) – ade Jan 24 at 10:34
feedback

If you need to import more than just one or two photos then take a look at this article that I wrote. It describes an easy way to perform a bulk import of photos and works for iOS 4.x.

link|improve this answer
This worked for me, but I needed to make a simple change to the app: Because I'm running the 4.2 simulator and this was designed to run on 4.0 (which I don't have), I went to "Project" -> "Edit Project Settings" and then under "Architectures" I changed the "Base SDK" to "Latest iOS". – Mark Fowler Feb 28 '11 at 8:24
Hey Robin, thanks heaps I found the app really useful. – glenstorey Feb 25 at 2:18
feedback

For iOS 5.1 this is further changed to new path

~/Library/Application Support/iPhone Simulator/5.1/Media/DCIM/100APPLE

link|improve this answer
feedback

For iOS 4.2 I had to go and create the 100APPLE folder and restart the simulator, then it worked.

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.