We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4dba16f commit 519f54eCopy full SHA for 519f54e
iOSExtensions/ShareExtension/AppContainerExtension/ShareViewController.cs
@@ -83,6 +83,10 @@ private async Task ExportImageToMainApp()
83
{
84
data = uiImage.AsPNG();
85
}
86
+ else if (nsObject is NSData {Length: > 0} nsData) //from screenshot editor for iOS 26+
87
+ {
88
+ data = nsData;
89
+ }
90
91
if (data is null)
92
0 commit comments