2

Now that you can change app icons in iOS I am wondering if they need to be images already included in the bundle or if I can dynamically create an image file in code and assign it as the app icon?

Erik Godard
  • 5,930
  • 6
  • 30
  • 33
HenryGale
  • 681
  • 6
  • 25

1 Answers1

1

The image must already be included in the bundle.

You can use UIApplication.setAlternateIconName to change the icon easily, but you would want to read up on the common pitfalls.

samwize
  • 25,675
  • 15
  • 141
  • 186