我已经编写了将图像从文档目录上传到 Dropbox 的示例相册的代码。但它并不像我想要的那样工作。
我的代码:
-(NSString *)getDocumentPath{
NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory,NSUserDomainMask, YES);
NSString *path = [[paths objectAtIndex:0]stringByAppendingPathComponent:@"image1.jpg"];
NSLog(@"path:%@",path);
return path;
}
-(IBAction)uplaodingPhotos:(id)sender
{
NSString *path = [self getDocumentPath];
[[self restClient] uploadFile:@"splash.jpg" toPath:@"/Photos/Sample Album"
withParentRev:nil fromPath:path];
}
在此代码中,我想将文档目录中的图像 image1 添加到 Dropbox 中的示例相册。但它不会复制图像。现在我该怎么办?
请帮忙。预先感谢。