pointfreeco / swift-snapshot-testing

📸 Delightful Swift snapshot testing.
https://www.pointfree.co/episodes/ep41-a-tour-of-snapshot-testing
MIT License
3.68k stars 556 forks source link

Remove deprecated UIGraphicsBeginImageContextWithOptions #818

Closed murtaza64 closed 4 months ago

murtaza64 commented 7 months ago

As of iOS 17, UIGraphicsBeginImageContextWithOptions has been deprecated, and causes apps built with Xcode 15 to crash. The suggested fix is to use UIGraphicsImageRenderer, which this PR implements.

murtaza64 commented 7 months ago

What's the earliest iOS version you need to support? The replacement has been available since iOS 10. Unfortunately I'm not experienced enough with iOS to implement a version check

murtaza64 commented 7 months ago

Also, there are definitely at least a few other people experiencing crashes: https://github.com/DylanVann/react-native-fast-image/issues/1010