I am trying to load a live image into a UImageView
but it is being loaded as a static image.
Here is my code:
if let stringLocal = Bundle.main.path(forResource: "Image_from _iOS", ofType: "jpg") {
self.displayImageView.image = UIImage(named: stringLocal)
}
Any suggestions?