使用ASNetworkImageNode加载https图像?

时间:2017-09-06 12:10:33

标签: ios asyncdisplaykit

我正在使用带ASNetworkImageNode的HTTP正常加载图片,现在用HTTPS替换它,我的HTTPS使用的是自签名证书。

使用ASNetworkImageNode无法加载。

我想知道如何配置我照片的正常加载。

1 个答案:

答案 0 :(得分:2)

您可以尝试以下代码段,使用 ASNetworkImageNode

从网址加载图片
fileprivate var imageNode : ASNetworkImageNode = ASNetworkImageNode()
fileprivate var imageUrl = "your image url" // you can put your image url here.

addSubnode(imageNode) // adding the node to the parent node.

imageNode.url = URL.init(string: imageUrl!)
imageNode.contentMode = UIViewContentMode.scaleAspectFill
imageNode.backgroundColor = UIColor.white.withAlphaComponent(0.6)