我想将文件上传到网站(在本例中为 MediaFire)
到目前为止我得到的非工作代码:
NSString *File2upload = @"Documents/data.xml";
NSURL *url = [NSURL URLWithString"http://[email protected]:[email protected]/data.xml"];
[File2upload writeToURL:url atomically:YES encoding:NSUTF8StringEncoding error: NULL];
Best Answer-推荐答案 strong>
而不是忽略错误(通过将 NULL 作为 error: 参数传递),您应该查看返回的 NSError 对象通过电话。您正在调用的 NSString 方法的名称 (writeToURL:atomically:encoding:error: ) 可能表明您可以使用任意方案,但实际上只有 file ://... 网址会起作用。
如果您想将文件上传到 ftp 服务器,您需要使用 ftp 客户端库,例如 this previous answer 中提到的那些。 .
关于ios - Xcode iPhone SDK - 上传文件,我们在Stack Overflow上找到一个类似的问题:
https://stackoverflow.com/questions/6519640/
|