Hy Everybody,
I hope enyone cann explain me how I can save an file on the iPhone
I get the file with NSURL so fare no prob. I'd like to donload the file and work with the donloaded file. But I have no Idea how.
Hy Everybody,
I hope enyone cann explain me how I can save an file on the iPhone
I get the file with NSURL so fare no prob. I'd like to donload the file and work with the donloaded file. But I have no Idea how.
Check this for downloading: Apple docs
After downloading the file, you will probably have the contents of the file on a NSMutableData.
Check the documentation on NSData, you have a method writeToFile:
Create NSData with contentsOfURL Now use this data to write in a file. You can create file in the NSHomeDirecotry() using NSFileManager.