Hi. I wonder if there is a way to download all images form a directory in backendless. I have a folder called templates, that has a number of images. I know how to download each individually, but it would be great if there is a way to download them all at one request. Thank you.
Currently this is what if do in iOS:
NSMutableURLRequest *request = [NSMutableURLRequest requestWithURL:[NSURL URLWithString:imageURL]
cachePolicy:NSURLRequestReloadIgnoringLocalAndRemoteCacheData
timeoutInterval:10];
[request setHTTPMethod: @"GET"];
NSError *requestError;
NSURLResponse *urlResponse = nil;
NSData *response1 = [NSURLConnection sendSynchronousRequest:request returningResponse:&urlResponse error:&requestError];
UIImage *image=[UIImage imageWithData:response1];
return image;