vote up 0 vote down star
2

In an iPhone app I currently have code for downloading a file from the Web to the iPhone and saving it to disk.

The problem is that if the file is large then the memory usage of the app skyrockets and the app crashes.

I am sure I am just not doing it the "proper" way.

Currently I have the following:

mediaData = [[NSData alloc] initWithContentsOfURL:[NSURL URLWithString:path]];
[mediaData writeToFile:fullPath atomically:YES];
[mediaData release];

As I mentioned this works for something like a picture, but not for something like say a video clip, as the app crashes.

What is the proper way to do this to keep my app from crashing? My thought was maybe sockets, but as I have not done much socket programming, I am not sure.

Thanks

flag

3 Answers

vote up 3 vote down check

You can use NSURLConnection which runs asynchronously and delivers data in manageable chunks.

link|flag
You would also want to use an API like NSFileHandle to write the data to disk as it comes in. Of course for a video clip, would you not be better off using the movie player's built-in downloading support? – Mike Abdullah Mar 15 at 23:07
No because it will not allow you to save the video for future use – kdbdallas Mar 16 at 0:55
NSURLConnection with NSFileHandle was the answer. NSURLConnection alone still crashed. – kdbdallas Mar 16 at 1:50
vote up 2 vote down

As NSURLDownload is not available on the iPhone, you might want to use NSURLConnection and buffer some data in a NSMutableData using connection:didReceiveData: delegate method. This article describes some of this: http://dannyg.com/iapps/Blog/Entries/2009/2/16_The_Joy_in_Discovering_You_Are_an_Idiot.html

link|flag
vote up 0 vote down

kdbdallas Can you share the solution?

Thanks!

link|flag
NSURLConnection with NSFileHandle was the answer. NSURLConnection alone still crashed – kdbdallas Aug 6 at 3:06

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.