James Raitsev
James Raitsev

Reputation: 96581

Xcode, can't remove "Launch image" from project

I am playing with my Xcode, following tutorial, learning this stuff. I added an image to "Launch Images", rebuilt my project, it showed up.

Is there a permanent location where this file can be removed from? Is there a cache that needs to be reset etc?

Please let me know.

Upvotes: 9

Views: 9815

Answers (5)

Anmar
Anmar

Reputation: 31

With the project open Goto xcode > Product > Clean

Upvotes: 3

Zorayr
Zorayr

Reputation: 24962

Navigate to the project folder, go to Resources folder and delete the folders called splash and icon (do this from both from Xcode and Finder). Also delete the app from either the device or the simulator by pressing on it and x-ing it out then go to Product->Clean.

I know this was very painful, but now you can set the new icons and launch images from Xcode.

Good luck.

Upvotes: 2

Thompson
Thompson

Reputation: 1098

Are you looking for an image named "Default.png" (or whatever suffix)? When assigning an image to the default launch, Xcode makes a copy and renames it "Default".

Upvotes: 0

FeifanZ
FeifanZ

Reputation: 16316

iPhone Simulator caches stuff. Try a clean build, or actually deleting the app from the simulator (by holding down on a home screen icon until it wiggles, then X-ing it).

Upvotes: 24

Codr
Codr

Reputation: 68

Check that the image is not in the project folder anywhere, also ensure that in the info.plist there is no value relating to launch image.

Upvotes: 0

Related Questions