This is my code
let imageNode = ASNetworkImageNode()
imageNode.url = URL(string: "https://media.giphy.com/media/l2R0aKwejYr8ycKAg/giphy.gif")
imageNode.delegate = self
imageNode.frame = view.bounds
imageNode.autoresizingMask = [.flexibleWidth, .flexibleHeight]
imageNode.contentMode = .scaleAspectFit
view.addSubnode(imageNode)
This is my code