user238712
user238712

Reputation: 31

iphone simulator picks up deleted resources from xcode

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

Upvotes: 1

Views: 1810

Answers (3)

AlexChaffee
AlexChaffee

Reputation: 8252

Product>Clean didn't do it for me. I needed to do "Reset Content and Settings..." from inside the Simulator's menu -- a much safer way than messing around inside ~/Library/Application Support/iPhone Simulator/*sdk_version*/Applications

Upvotes: 0

NeilInglis
NeilInglis

Reputation: 3431

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

Upvotes: 4

Mihai Damian
Mihai Damian

Reputation: 11432

Have you also deleted the app from the simulator?

Upvotes: 3

Related Questions