imzyf / ios-swift-learning-notes

📝 iOS Swift Learning Notes - see Issues
MIT License
0 stars 0 forks source link

http 支持配置 #71

Open imzyf opened 6 years ago

imzyf commented 6 years ago
<key>NSAppTransportSecurity</key>
    <dict>
        <key>NSAllowsArbitraryLoads</key>
        <true/>
    </dict>
imzyf commented 6 years ago

有可能拒绝发布

imzyf commented 6 years ago
    <key>NSAppTransportSecurity</key>
    <dict>
        <key>NSExceptionDomains</key>
        <dict>
            <key>aliyuncs.com</key>
            <dict>
                <key>NSExceptionAllowsInsecureHTTPLoads</key>
                <true/>
                <key>NSIncludesSubdomains</key>
                <true/>
            </dict>
        </dict>
    </dict>

https://stackoverflow.com/questions/40327131/app-transport-setting-exception-domains-not-working-xcode-7-3