Does App Store reject submission if NSAllowsArbitraryLoads set to YES?

Thanks for everyone’s answer.

The good news is Apple Accepted my app with NSAllowsArbitraryLoads set to YES.

UPDATE (Thanks @Vijayts):
Apple will reject Apps not conforming to ATS after the end of Dec 2016.

Source

However, If you need to load a http:// resource only in web (UIWebView/WKWebView/SafariViewController) then the following should suffice.

<key>NSAppTransportSecurity</key>
<dict>
    <key>NSAllowsArbitraryLoadsInWebContent</key>
    <true/>
</dict>

Leave a Comment