Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions MAUI/ImageEditor/getting-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -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" %}

<key>NSAppTransportSecurity</key>
<dict>
<key>NSAllowsArbitraryLoads</key>
<true/>
</dict>

{% endhighlight %}
{% endtabs %}

### Load an image from Resource folder

To load an image from a resource file.
Expand Down