Skip to content

Commit 41e2832

Browse files
Merge pull request #3485 from syncfusion-content/ImageEditor-URI-Image-details-hotfix
967983-[Hotfix] ImageEditor URI image iOS platform related notes added
2 parents d451693 + d4df222 commit 41e2832

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)