Mostrar a porcentagem de carregamento do download de imagens do URL com o Swift

Então, eu tenho uma imagem baixada de um URL como esse

        let request = NSMutableURLRequest(URL: NSURL(string: "\(self.ip)")!)
        request.HTTPMethod = "POST"
        let postString = "userID=\(userID)"
        request.HTTPBody = postString.dataUsingEncoding(NSUTF8StringEncoding)

        let configuration = NSURLSessionConfiguration.defaultSessionConfiguration()
        let session = NSURLSession(configuration: configuration, delegate: self, delegateQueue: NSOperationQueue.mainQueue())

        let task = session.dataTaskWithRequest(request) {
            data, response, error in
                   .........
        }

e minhas funções de delegado se parecem

func URLSession(session: NSURLSession, task: NSURLSessionTask, didSendBodyData bytesSent: Int64, totalBytesSent: Int64, totalBytesExpectedToSend: Int64) {

    let uploadProgress:Float = Float(totalBytesSent) / Float(totalBytesExpectedToSend)
    let progressPercent = Int(uploadProgress*100)
    print(progressPercent)
}

func URLSession(session: NSURLSession, dataTask: NSURLSessionDataTask, didBecomeDownloadTask downloadTask: NSURLSessionDownloadTask) {
    let downloadProgress:Float = Float(downloadTask.countOfBytesReceived) / Float(downloadTask.countOfBytesExpectedToReceive)
    print(downloadProgress)
}

O progresso do upload funciona bem para uma função diferente, mas ao baixar uma imagem, a segunda função URLSession não é chamada. O que estou fazendo errado?

questionAnswers(1)

yourAnswerToTheQuestion