我使用AWSLocal
内容上传方法上传文件。我需要取消从其他屏幕上传。
以下是上传功能:
private func uploadLocalContent(localContent: AWSLocalContent) {
localContent.uploadWithPinOnCompletion(false, progressBlock: {[weak self](content: AWSLocalContent?, progress: NSProgress?) -> Void in
guard let strongSelf = self else { return }
dispatch_async(dispatch_get_main_queue()) {
// Update the upload UI if it is a new upload and the table is not yet updated
if(strongSelf.tableView.numberOfRowsInSection(0) == 0 || strongSelf.tableView.numberOfRowsInSection(0) < strongSelf.manager.uploadingContents.count) {
strongSelf.updateUploadUI()
} else {
for uploadContent in strongSelf.manager.uploadingContents {
if uploadContent.key == content?.key {
let index = strongSelf.manager.uploadingContents.indexOf(uploadContent)!
let indexPath = NSIndexPath(forRow: index, inSection: 0)
strongSelf.tableView.reloadRowsAtIndexPaths([indexPath], withRowAnimation: .None)
}
}
}
}
}, completionHandler: {[weak self](content: AWSContent?, error: NSError?) -> Void in
guard let strongSelf = self else { return }
strongSelf.updateUploadUI()
if let error = error {
print("Failed to upload an object. \(error)")
strongSelf.showSimpleAlertWithTitle("Error", message: "Failed to upload an object.", cancelButtonTitle: "OK")
} else {
strongSelf.refreshContents()
}
})
updateUploadUI()
}
答案 0 :(得分:1)
不幸的是,从AWSLocalContent
调用时无法取消上传,因为无法访问AWTask
。
查看AWSS3TransferManager
(http://docs.aws.amazon.com/AWSiOSSDK/latest/Classes/AWSS3TransferManager.html#//api/name/upload :)为每个操作创建AWTask
,可以上传或下载,可以取消/暂停/恢复。另外,您可以从AWSS3TransferManager
获得便捷方法,可以一次取消/暂停/恢复所有任务。
您必须创建上传AWTask
,将其保存在可从其他屏幕访问的位置,然后您就可以取消它。