You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi, I'm developing an app using Drawsana.
I recently updated Xcode to 15 and when I run it on iOS 17, I get the error shown in the screenshot.
So I searched the forums and added the following code as a workaround, but it would be great if you could make it bug-free for the latest version.
Thanks !
Crash ScreenShot
Suggestion
Add code to avoid rendering images if size.width, size.height is less than 0 before calling UIGraphicsBeginImageContextWithOptions
if (size.width <=0 && size.height <=0){returnnil}UIGraphicsBeginImageContextWithOptions(size, false, scale)
Hi, I'm developing an app using Drawsana.
I recently updated Xcode to 15 and when I run it on iOS 17, I get the error shown in the screenshot.
So I searched the forums and added the following code as a workaround, but it would be great if you could make it bug-free for the latest version.
Thanks !
Crash ScreenShot
Suggestion
Reference
The text was updated successfully, but these errors were encountered: