1、如果是http域名,则需要在Plist文件中添加
<key>NSAppTransportSecurity</key>
<dict>
<key>NSAllowsArbitraryLoads</key>
<true/>
</dict>
2、如果添加了NSAppTransportSecurity 还是请求出错并报错如下
networkd_settings_read_from_file Sandbox is preventing this process from reading networkd settings file at "/Library/Preferences/com.apple.networkd.plist", please add an exception.
则需要开启软件的网络授权,这点是与iOS不同之处。
在 target ->Signing & Capabilities ->app sandbox -> Outgoing Connections 勾选☑️
3、如果你发现 勾选了 Outgoing Connections 在debug模式可以正常请求接口,但是在release 模式下仍然报错!!那么恭喜你,我和一样踩坑了!哈哈哈哈
原因是勾选之后 会默认生成俩份.entitlements文件, 一份是debug、一份是release的。debug模式下的文件会自动帮你添加
<key>com.apple.security.network.client</key>
<true/>
而release的需要你去手动添加一下就行了。
至于为什么没有自动添加,可能有工程有关吧。也许我的工程哪里配置有问题。
~~~记录一下填坑经历~~~