gpt4 book ai didi

ios - 如何将图像文件上传到保管箱?

转载 作者:可可西里 更新时间:2023-11-01 01:37:37 25 4
gpt4 key购买 nike

我想选择图片到图库中,然后将该图片上传到保管箱中。我该怎么做?

我试过 dropbox SDK 但我不知道如何上传所选图片

 - (void)uploadFile:(NSString*)filename toPath:(NSString*)path fromPath:(NSString *)sourcePath

此方法在 DBRestClient.h 中定义,这是一个来自 DropBox SDK for iOS 的库文件。但是从上面的方法声明来看,需要确定 UIImageView 中存在的图像的“fromPath”,才能将其上传到我在 dropbox 上的帐户。能否请您帮助我确定路径,或者就此而言,任何适用的变通办法。

最佳答案

NSData *data = UIImagePNGRepresentation(imageView.image);
NSString *file = [NSTemporaryDirectory() stringByAppendingPathComponent:@"upload.png"];

[data writeToFile:file atomically:YES];
[DBRestClient uploadFile:@"upload.png" toPath:@"Dropbox/Path" fromPath:file];

关于ios - 如何将图像文件上传到保管箱?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34628683/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com