Skip to content

967983-[Dev] ImageEditor URI image iOS platform related notes added #3484

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 2 commits into
base: development
Choose a base branch
from
Open
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