I am using the DropBox Api in my app.I just want to upload the image as well as tet file on the server and download it from the server..I have use these methods for that. I am able to upload the both the files but when the matter of downloading the file.I can download only image file with loadThumbnail method and loadFile method is not called.
- (void)loadFile:(NSString *)path intoPath:(NSString *)destinationPath
{
NSLog(@"LoadFile");
}
- (void)loadRandomText {
NSString* photoPath;
NSLog(@"Photo Array--%@",textDataArray);
for (int i = 0 ; i<[textDataArray count]; i++) {
NSString *temp = [textDataArray objectAtIndex:i];
NSArray *exztArray = [temp componentsSeparatedByString:@"."];
NSString *extString=[exztArray objectAtIndex:0];
if ([extString isEqualToString:@"txt"]) {
photoPath = [textDataArray objectAtIndex:i];
[self.restClient loadFile:photoPath intoPath: [self textPAth]];
}
}
}
can anyone please help me to solve this.Thank you in advance.