Resources seem not to be copied to iPhone
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 a开发者_如何学Pythonctual device it does not find the images. I've included them under the resources group in Xcode. Anyone?
Best
–fCheck 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.
Try cleaning the project with Build->Clean all Targets, and manually remove the app from the device. Then try building again.
精彩评论