Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Image does not update in Launch Storyboard

I have noticed that if I change an image in the xcassets, the launch storyboard does not update.

For instance, let's say you have a UIImage view in your launch storyboard with an image called "logo" that is blue. If you open up the in the Finder and change the color of the image to red, next time you run on the device the logo will still be blue.

The preview of the storyboard in xCode will show the correct (red) logo image.

Before running, I have tried:

  • Cleaning the Project
  • Deleting Derived Data
  • Deleting the App
  • Renaming the Image

Nothing seems to fix the problem. Is there another option that I am missing?

like image 502
Hackmodford Avatar asked Sep 25 '22 05:09

Hackmodford


1 Answers

Appears to be a problem with caching on the device. Delete your app, restart the device, and pray. Image does not update when changed if that image is used on LaunchScreen.storyboard

like image 67
Thomas Avatar answered Oct 20 '22 11:10

Thomas