saoudrizwan / Disk

Easily persist structs, images, and data on iOS
MIT License
3.1k stars 170 forks source link

Cannot save UIImage #34

Closed EthanSK closed 6 years ago

EthanSK commented 6 years ago

When trying to save a UIImage, the app crashes and I get this error inside of the library files

Thread 1: Fatal error: Optional does not conform to Encodable because UIImage does not conform to Encodable.

EthanSK commented 6 years ago

Ah, turns out I was trying to use an image from a dictionary, which requires unwrapping. This causes the function overloading to not work properly and the one that uses codable is used.