views:

26

answers:

2

I've created a prototype app which uploads a bunch of photos to a webserver. Everything works fine in the simulator. But when I want to try it on an actual device it does not find the images. I've included them under the resources group in Xcode. Anyone?

Best
–f

A: 

Try cleaning the project with Build->Clean all Targets, and manually remove the app from the device. Then try building again.

thgc
I've already tried that. That doesn't fix it. I've also tried it on several devices: iPhone 4, 3G and iPod.
flohei
+3  A: 

Check the filenames. The filesystem on your mac is most likely not case-sensitive, but the filesystem on the actual device is case-sensitive. So make sure the filenames match exactly.

fluchtpunkt
Ah, damn. That's it! Thanks!
flohei