0

我正在尝试继续一个项目,但也许我向谷歌提出了错误的问题。

我一直在使用 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 中创建的文件,作为照片或声音,将其保存在我的服务器中。

我还没有找到要使用的类,也没有找到如何在我的服务器中接收该数据。

谢谢

4

1 回答 1

0

在我使用的 iPad 中创建声音http://www.techotopia.com/index.php/Recording_Audio_on_an_iPhone_with_AVAudioRecorder_%28iOS_4%29

要发送帖子数据和文件,我使用了这个链接http://zcentric.com/2008/08/29/post-a-uiimage-to-the-web/#comment-8145

因此,我没有保存 .png,而是保存了 .caf

于 2012-08-24T00:29:10.203 回答