ファイルのダウンロードを開始した後、ファイルのダウンロードを停止するにはどうすればよいですか?次のようにダウンロードを開始します。
[docDirSkyDRive appendString:[NSString stringWithFormat:@"/%@ ",[[FilesFromSkyDrive objectAtIndex:indexPath] objectForKey:@"name"]]];
NSMutableString *downloadPath=[[NSMutableString alloc]init];
[downloadPath appendFormat:@"%@/content",[[FilesFromSkyDrive objectAtIndex:indexPath] objectForKey:@"id"]];
[self.liveClient downloadFromPath:downloadPath delegate:self userState:@"download"];
これはファイルをダウンロードするための私のコードスニペットですが、一度開始するとファイルのダウンロードを停止する方法がわかりません。