我正在尝试继续一个项目,但也许我向谷歌提出了错误的问题。
我一直在使用 NSURLConnection 下载文件
NSURLRequest * XMLRequested = [[NSURLRequest alloc] initWithURL:[NSURL URLWithString:@"http://kilkadg.com/cursos/images/imagenes.xml"]];
NSURLConnection * conexion = [[NSURLConnection alloc] initWithRequest:XMLRequested delegate:self];
并实现下一个方法
-(void)connection:(NSURLConnection *)connection didReceiveData:(NSData *)data{
[imagenBytes appendData:data];
}
-(void)connectionDidFinishLoading:(NSURLConnection *)connection{
[imagenBytes writeToFile:[DataImage imagenSource:self.name] atomically:YES];
}
现在我想用另一种方式来做。我想要在 iPad 中创建的文件,作为照片或声音,将其保存在我的服务器中。
我还没有找到要使用的类,也没有找到如何在我的服务器中接收该数据。
谢谢