From 2f4e5995db6444e1821694aa6157f31a42bd9c6a Mon Sep 17 00:00:00 2001 From: Vishal Omprasad Date: Tue, 29 Jul 2025 20:46:20 +0530 Subject: [PATCH 1/2] URI image notes added for iOS --- MAUI/ImageEditor/getting-started.md | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/MAUI/ImageEditor/getting-started.md b/MAUI/ImageEditor/getting-started.md index 4633eeefc5..fce2c24ae7 100644 --- a/MAUI/ImageEditor/getting-started.md +++ b/MAUI/ImageEditor/getting-started.md @@ -360,6 +360,15 @@ public partial class MainPage : ContentPage {% endhighlight %} {% endtabs %} +N> To load an URI image on iOS platform, you need to set the [App Transport Security (ATS)](https://developer.apple.com/documentation/bundleresources/information-property-list/nsapptransportsecurity) configuration in the info.plist file. +{% highlight xaml %} +NSAppTransportSecurity + + NSAllowsArbitraryLoads + + +{% endhighlight %} + ### Load an image from Resource folder To load an image from a resource file. From 7f90047efad18669d6f350613f09e071bd7efc80 Mon Sep 17 00:00:00 2001 From: Vishal Omprasad Date: Wed, 30 Jul 2025 12:55:46 +0530 Subject: [PATCH 2/2] ImageEditor Getting Started URI image content corrections addressed --- MAUI/ImageEditor/getting-started.md | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/MAUI/ImageEditor/getting-started.md b/MAUI/ImageEditor/getting-started.md index fce2c24ae7..e85c2a8408 100644 --- a/MAUI/ImageEditor/getting-started.md +++ b/MAUI/ImageEditor/getting-started.md @@ -360,14 +360,19 @@ public partial class MainPage : ContentPage {% endhighlight %} {% endtabs %} -N> To load an URI image on iOS platform, you need to set the [App Transport Security (ATS)](https://developer.apple.com/documentation/bundleresources/information-property-list/nsapptransportsecurity) configuration in the info.plist file. -{% highlight xaml %} +N> To load an URI image on iOS platform, you need to set the [App Transport Security (ATS)](https://developer.apple.com/documentation/bundleresources/information-property-list/nsapptransportsecurity) configuration in the Info.plist file. + +{% tabs %} +{% highlight C# tabtitle="Info.plist" %} + NSAppTransportSecurity NSAllowsArbitraryLoads + {% endhighlight %} +{% endtabs %} ### Load an image from Resource folder