diff --git a/MAUI/ImageEditor/getting-started.md b/MAUI/ImageEditor/getting-started.md
index 4633eeefc5..e85c2a8408 100644
--- a/MAUI/ImageEditor/getting-started.md
+++ b/MAUI/ImageEditor/getting-started.md
@@ -360,6 +360,20 @@ 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.
+
+{% tabs %}
+{% highlight C# tabtitle="Info.plist" %}
+
+NSAppTransportSecurity
+
+	NSAllowsArbitraryLoads
+	
+
+
+{% endhighlight %}
+{% endtabs %}
+
 ### Load an image from Resource folder
 
 To load an image from a resource file.