我正在使用Alamofire下载进行文件下载,但我不知道如何暂停/恢复/取消特定的请求.
@IBAction func downloadBtnTapped() { Alamofire.download(.GET,"http://httpbin.org/stream/100",destination: destination) .progress { (bytesRead,totalBytesRead,totalBytesExpectedToRead) in println(totalBytesRead) } .response { (request,response,_,error) in println(response) } } @IBAction func pauseBtnTapped(sender : UIButton) { // i would like to pause/cancel my download request here }