I've just updated to Xcode 7 and Swift 2.0, and of course it has caused some issues in my app. I have solved a lot of them, but I am struggling with this one.
In my table view, I am loading images from Parse.com, but for some reason, the images are not being displayed in the AsyncImageView. This code worked perfectly prior to updating so I'm not sure what the issue is:
AsyncImageLoader.sharedLoader().cancelLoadingURL(cell.rideImageView.imageURL)
cell.rideImageView.image = UIImage(named: "Unloaded")
cell.rideImageView.imageURL = NSURL(string: ride.rideImageSmall!)
I've checked to make sure the image URL is being loaded correctly from Parse, and it is. This is the library I'm using: https://github.com/nicklockwood/AsyncImageView
Anyone have any ideas?