我使用两个阵列跟踪下载,跟踪我的下载并知道保存位置:
private var filesToDownload: NSMutableArray = []
private let startedDownloads: NSMutableArray = []
下载完成后,从两个阵列中删除它们,并将下载的文件移动到持久位置。
//is called once the download is complete
internal func URLSession(session: NSURLSession, downloadTask: NSURLSessionDownloadTask, didFinishDownloadingToURL location: NSURL) {
print("download task", downloadTask.originalRequest!)
print("download tasks", self.startedDownloads)
// find matching manifestObject through finished downloadTask and use it to generate path
let indexDownloadTask = self.startedDownloads.indexOfObjectIdenticalTo(downloadTask.originalRequest!)
let listItem = self.filesToDownload.objectAtIndex(indexDownloadTask)
// move file
FileSystem.Instance().moveToRoot(location, relativeTo: listItem["file"] as! String)
// remove downloadTask and matching item in filesToDownload to enshure the indexes of both arrays still matches
self.startedDownloads.removeObjectAtIndex(indexDownloadTask)
self.filesToDownload.removeObjectAtIndex(indexDownloadTask)
print("Remaining Downloads1: ", self.startedDownloads.count)
print("Remaining Downloads2: ", self.filesToDownload.count)
// finished all downloads
if self.startedDownloads.count == 0 {
self.working = false
self.cb(result: 0)
print("Crazy shit, we finished downloading all files")
}
}
现在,当运行我的应用程序时,它会自动启动所有下载。如果我让他们完成一切都很好。但是当我在下载过程中点击Xcode中的stop并再次运行时,它似乎继续previous
次下载,并且由于previous
下载还没有在数组中,因此会超出限制当然是started downloads
。
为什么之前的下载会继续?
使用模拟器并单击停止并运行时会创建一个带有设备的新文件夹" udid"和一个新的应用程序" udid"它就像一个全新的安装?还是继续?如果继续,它不应该使用相同的文件夹来继续使用相同的文件吗?
当下载完成后,我将它们从临时位置移动到持久位置,但由于它为新的点击运行创建了一个新文件夹,所以要移动的所有小部件都会失败。我真的很困惑,这似乎毫无意义。
我用
开始internal func download(url: NSURL) -> Void {
self.working = true
let session = self.getSession()
let task = session.downloadTaskWithURL(url)
self.startedDownloads.addObject(task.originalRequest!)
task.resume()
}
并使用此配置
private let sessionConfig: NSURLSessionConfiguration = NSURLSessionConfiguration.backgroundSessionConfigurationWithIdentifier("com.company.app.background")
答案 0 :(得分:1)
如果您的应用设置为后台下载,则系统会在应用终止后继续下载。对于从跳板启动的应用,系统将在下载完成后在后台重新启动您的应用。
文档告诉您,当您启动时,您应该重新创建下载会话对象并设置代理,然后您将获得下载完成消息。
如果您不想在上次运行中启动下载,请在启动应用时发送,那么您可能不希望下载后台。
答案 1 :(得分:0)
每次任务完成时,您都应从appDelegate中删除完成处理程序:
close all;
BW = imread('img11_Inp','jpg');
L = bwlabel(BW)
figure
imshow(BW);
CC = bwconncomp(L);
stats = regionprops(L,'Image');
stats
%Display the first component as an image
Image1 = stats(2).Image
figure
imshow(Image1);