I'm downloading a 2400x1600 image from Parse and I don't want it to hold all that data in memory at once. PFFile object from Parse has a convenient method to get NSData as NSInputStream so when the data is finally downloaded I end up with a NSInputStream. So now I want to use that NSInputStream to get my UIImage. It should work like creating a UIImage with contents of file method i.e. not the whole image is loaded into memory at once. I think that writing to a file from NSInputStream and then use the UIImage's contents of file method should work fine in my case, but I have found no way to write to a file from a NSInputStream.
Any code example or some guideline would be really appreciated.
Thanks in advance.
To accomplish this you can set up an
NSOutputStream
to then stream the received data to a file. Create your output stream usinginitToFileAtPath:append:
with YES for append. In your input stream call back, pass the data to your output stream by callingwrite:maxLength:
(read more in the docs). Once the stream is complete, you then have the full image on file without ever having it fully in memory.Henri's answer above is more appropriate since you're using Parse, but this is the general solution.