1

How to set the app icon in the app switcher screen?

enter image description here

Evgeny Karkan
  • 8,782
  • 2
  • 32
  • 38
sambath
  • 33
  • 8

2 Answers2

0

You have to provide the required App Icon assets. Please refer to HIG documentation:

Every app must supply small icons for use on the Home screen and throughout the system once your app is installed, as well as a larger icon for display in the App Store.

So in your Images.assets just put all required app icon assets and that's it.

Evgeny Karkan
  • 8,782
  • 2
  • 32
  • 38
0

That being said, this isn't a problem you can fix. This is a bug in Apple's code not yours.

This will take effect after the second launch!

do {
   try FileManager.default.removeItem(atPath: NSHomeDirectory()+"/Library/SplashBoard")
} catch {
   print("Failed to delete launch screen cache: \(error)")
}