是否可以使用我的iphone应用中的网址将文件保存到Dropbox?
我已经添加了从邮件中将文件作为附件发送的支持,但如果用户可以选择是否要将其保存在Dropbox中,如果应用程序存在于设备上,那将会很酷。
那可以这样做吗?
答案 0 :(得分:5)
执行此类操作的最佳方式可能是使用Dropbox Objective-C API
答案 1 :(得分:3)
NSString *localPath = [[NSBundle mainBundle] pathForResource:@"Info" ofType:@"plist"];
NSString *filename = @"Info.plist";
NSString *destDir = @"/";
[[self restClient] uploadFile:filename toPath:destDir
withParentRev:nil fromPath:localPath];
通过这种方式,你可以保存Dropbox中的任何文件。
答案 2 :(得分:1)
是的可能,检查此链接 - 将帮助您开始使用Dropbox APi
http://www.nanaimostudio.com/blog/2011/1/20/how-to-synchronize-your-app-data-using-dropbox-api.html
答案 3 :(得分:0)
以防万一有人来到这里,希望通过iPhone进行此操作,但不是在应用程序中以编程方式进行,这里有一些方便的服务: