Skip to content

Commit d4df222

Browse files
URI image notes content added for iOS
1 parent d451693 commit d4df222

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

MAUI/ImageEditor/getting-started.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -360,6 +360,20 @@ public partial class MainPage : ContentPage
360360
{% endhighlight %}
361361
{% endtabs %}
362362

363+
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.
364+
365+
{% tabs %}
366+
{% highlight C# tabtitle="Info.plist" %}
367+
368+
<key>NSAppTransportSecurity</key>
369+
<dict>
370+
<key>NSAllowsArbitraryLoads</key>
371+
<true/>
372+
</dict>
373+
374+
{% endhighlight %}
375+
{% endtabs %}
376+
363377
### Load an image from Resource folder
364378

365379
To load an image from a resource file.

0 commit comments

Comments
 (0)