在我的应用程序中,我允许用户查看他们所有的 Dropbox 文件,他们可以将文件导入 Dropbox 或将它们下载到应用程序中。我查看了 Dropbox 的网站,但在取消上传/下载时找不到任何内容。我有一些应用程序(例如 Textastic)取消了保管箱文件传输,我该如何取消它才能删除下载的数据并停止加载到应用程序中?
我用来将文件加载到应用程序中的代码是:
- (void)startDownloadingDropboxFile:(NSString *)dropboxFilePath toPath:(NSString *)destinationPath {
NSLog(@"dropbox file path: %@",dropboxFilePath);
NSLog(@"destination path: %@",destinationPath);
self.dbFilePath = dropboxFilePath;
[[self restClient] loadFile:dropboxFilePath intoPath:destinationPath];
}