I'm having a problem with my code. I am trying to download a picture through a StringBuilder and then set it to a UIImage I seem to get a problem and I hope someone can see what I have done wrong.
setUI:
uiMovieTitle.text = self.movies![movieIndex].title
    var finalImageUrl = StringBuilder()
    let session = URLSession(configuration: .default)
    let downloadPicTask = session.dataTask(with: finalImageUrl) { (data, response, error) in
        // The download has finished.
        if let e = error {
            print("Error downloading cat picture: \(e)")
        } else {
            // No errors found.
            // It would be weird if we didn't have a response, so check for that too.
            if let res = response as? HTTPURLResponse {
                print("Downloaded cat picture with response code \(res.statusCode)")
                if let imageData = data {
                    // Finally convert that Data into an image and do what you wish with it.
                    let image = UIImage(data: imageData)
                    // Do something with your image.
                    uiMoviePoster.image = image
                } else {
                    print("Couldn't get image: Image is nil")
                }
            } else {
                print("Couldn't get response code for some reason")
            }
        }
    }
   downloadPicTask.resume()
}
StringBuilder
func StringBuilder() -> (String){
    let posterBase = "http://image.tmdb.org/t/p/w1920"
    let linkEnd = self.movies?[movieIndex].posterPath
    var finalLink = ""
    finalLink = posterBase + linkEnd!
    return finalLink
}
I do also have another download which gets me a list of movies(JSON) and is crucial for the StringBuilder.
 
     
    