2

I'm facing a strange issue, after adding all my images to a xcasset, my app looks malformed (see screenshot) when running it on iOS 8 simulator. Each image is full of artifacts. Before, all my images were simply added to main bundle, and everything worked. I don't have a device with iOS 8 to test on it. Also it works well on versions above iOS 8. If you have any guesses what is the problem, please tell me.

enter image description here

rmaddy
  • 314,917
  • 42
  • 532
  • 579
iOS Dev
  • 4,143
  • 5
  • 30
  • 58

2 Answers2

0

Ideal is to support three iOS versions, the current version and the previous two versions.

Try below steps:

  1. Remove all caches from User's Library
  2. Remove all derived data content of Xcode
  3. Clean
  4. Clear Trash
  5. Quit Xcode
  6. Open Xcode
  7. Build

It should help you.

Currently 92% devices are running iOS 10 or above

References (apple.com)

picciano
  • 22,341
  • 9
  • 69
  • 82
Jeetendra Kumar
  • 500
  • 3
  • 9
0

If the images do not contain alpha channel - try adding it, otherwise try removing it.

Also check this option (causes similar problems from time to time): How can I skip compressing one PNG?

Anton Malyshev
  • 8,686
  • 2
  • 27
  • 45