views:

255

answers:

2

I'm getting confused. I add resources (mp4 videos) to the resources folder in xcode and run the simulator and it picks them up, great!

I delete the file and simulator still picks it up from the resources directory. I delete the file in the app bundle that xcode is using and it still detects this file. I'm at a loss as to where/how I should delete items from xcode for it to actually remove them.

There's no 'remove from project' option, what am I missing here?

Regards,

Sapatos

+1  A: 

Have you also deleted the app from the simulator?

MihaiD
Cleaning the project didn't work for me when I had this problem, but deleting the app from the simulator did the trick.
Chris Lindsay
+2  A: 

You need to 'clean' the build to move these artefacts. Go to 'Build' and 'Clean' to remove them.

Alternatively you can blat projects from ~/Library/Application Support/iPhone Simulator/*sdk_version*/Applications

NeilInglis
that'll be it. thanks for the help. I'd tried deleting from the simulator and it kept rebuilding the same old files. the clean worked though
Feel free to mark this answer as 'accepted' then ;)
NeilInglis