In my app I'm currently using an NSURLSessionDownloadTask to fetch a file via HTTP.
This class provides a useful delegate interface to monitor its progress and getting the bytes once the download completes via NSURLSessionDownloadDelegate, however I have not been able to find any way to access the bytes as they are downloaded (before the download completes).
Is accessing these bytes possible or do I need to download the file using some other mechanism?