我正在尝试从uiimagepicker上传图片它正在imageview中返回图片。
现在我想将此选定图像上传到Dropbox。我怎么能这样做
我的代码是
- (IBAction)uploadButtonPressed:(id)sender {
[restClient uploadFile:@"Test.png" toPath:@"/" fromPath:imageview.image];
}
这是警告,因为它在 fromPath 中采用 NSString : 如何使用其名称传递图像?
答案 0 :(得分:2)
首先需要将图像保存到文档目录,然后保存所有功能:
[restClient uploadFile:@"Test.png" toPath:@"/" fromPath:@"path/of/file/indocmentdirectory"];