I'd like to have virtual files in an iOS app, so I can use [NSData dataWithContentsOfURL:]
to have a NSData (and a pointer to the bytes eventually) of a large table that I do not want to store on disk, but rather compute parts of when needed.
Any other approach to solving this problem is welcome!