1

我已经编写了将图像从文档目录上传到 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 中的示例相册。但它不会复制图像。现在我该怎么办?

请帮忙。预先感谢。

4

1 回答 1

1

首先,您需要确保您已连接到 Dropbox 会话,并且您的休息客户端不是空的。

有关更多信息,请检查 URL:https ://www.dropbox.com/developers/start/authentication#ios

于 2012-09-10T09:42:41.893 回答