0
I read that after 2017 Apple no longer accepts http in Swift + Xcode.
How to access a domain, using a webview that still has http. Example, in the post method of my page contains an http, the webview needs to access this url, but when I try to access it, the Xcode says it blocked the access.
I am using version 10 of Xcode, and this in info.plist no longer has the option to make the release.
Have you tried this solution? https://answall.com/questions/91156/webview-em-ios-n%C3%A3o-est%C3%A1-accessing-some-sites/91170#91170
– Rafael Leão
Thanks Rafael, it worked. If I publish my app in the Apple Store, you can block by this http setting that I just made?
– Flávio
It is possible. If you are accessing a specific url via HTTP, it is recommended to limit insecure access only to that url or domain using Nsexceptiondomains
– Rafael Leão