views:

99

answers:

2

Is there anyway of placing images on the iPad simulator?

+1  A: 

You can save images from Safari.

I don't think there is a different (easier) way.

Jongsma
Maybe you could type in a "file://localhost/..." URL into Safari on the simulator to load a photo from somewhere on your Mac?
progrmr
Not localhost, but I suppose file://Users/username/... should work
Jongsma
That's file:///Users/...
Jongsma
+1  A: 

I've done this by writing a little throwaway app that contains the images I want, then use the UIImageWriteToSavedPhotosAlbum API call to save them from my bundle.

David Coufal