HI support, How i can download the array of image from drobox using apiv2in IOS objective c.
I am using below code taht download only one Image from the droppbox.
NSFileManager *fileManager = [NSFileManager defaultManager];
NSURL *outputDirectory = [fileManager URLsForDirectory:NSDocumentDirectory inDomains:NSUserDomainMask][0];
NSURL *outputUrl = [outputDirectory URLByAppendingPathComponent:@Image.jpg];
[[[client.filesRoutes downloadUrl:@/Test1/Image2.jpg overwrite:YES destination:outputUrl]
setResponseBlock:^(DBFILESFileMetadata *result, DBFILESDownloadError *routeError, DBRequestError *networkError,
NSURL *destination) {
if (result)
{
NSLog(@%@\n", result);
NSData *data = [[NSFileManager defaultManager] contentsAtPath:[destination path]];
NSString *dataStr = [[NSString alloc] initWithData:data encoding:NSUTF8StringEncoding];
NSLog(@%@\n", dataStr);
} else
{
NSLog(@%@\n%@\n", routeError, networkError);
}
}] setProgressBlock:^(int64_t bytesDownloaded, int64_t totalBytesDownloaded, int64_t totalBytesExpectedToDownload)
{
NSLog(@%lld\n%lld\n%lld\n, bytesDownloaded, totalBytesDownloaded, totalBytesExpectedToDownload);
}];