Nikita
Nikita

Reputation: 1853

How to clean obsolete and excluded files from Xcode project?

I have a problem, with running some project on iPhone 4 device. It displays some excluded and already deleted XIB files. For contrast, on the simulator everything is OK. I deleted the app from device, and used xcode feature to clean the build, and there are still some obsolete versions.

Upvotes: 0

Views: 439

Answers (1)

Robin Summerhill
Robin Summerhill

Reputation: 13675

Hold down the Option key then select Product > Clean Build Folder... . This will completely wipe the build folder and you can then rebuild from a clean slate. If you also delete the app from your device then you can be sure that there are no leftovers from a previous build.

Upvotes: 2

Related Questions