Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Xcode 10 beta iOS 12 not showing images

Tags:

ios

image

beta

I have a issue with beta versions of Xcode and iOS. I have some png assets, and they work fine in simulator. But on device some of assets (not all, but most) are having problem being loaded correctly. In terminal I get errors like:

2018-08-14 15:53:06.554087+0200 Findlo[1896:230695] [framework] CoreUI: Encoded Deepmap blob version 1128416075 does not match with current version 4
2018-08-14 15:53:06.554132+0200 Findlo[1896:230695] [framework] CoreUI: Unable to decompress stream for CSI image block data. 'deepmap-lzfse'

And UIImage is created, but it's displayed as completely transparent image. What can I do to resolve this? I created all these images using Pixelmator (both working and not working)

like image 277
Damian Dudycz Avatar asked Oct 28 '22 06:10

Damian Dudycz


1 Answers

I was getting these exact errors trying to create an SKSpriteNode from a .png. I believe this was caused if you had a mismatch in the version of the Xcode 10 beta and iOS 12 beta. I had the latest Xcode 10 (beta 6) but a slightly older iOS 12 seed. It was resolved when I updated to the latest iOS 12 beta (beta 10).

Hope this helps!

like image 105
Thomas Jeans Avatar answered Nov 15 '22 06:11

Thomas Jeans