Hey guys so I'm pulling down a yaml file from a web server. My NSInputStream
works great with local yaml files (using file://filename.yaml url scheme)
Here's the relevant code snippet:
NSInputStream * stream = [[NSInputStream alloc] initWithURL:yamlURL];
Where yaml url is something like http:// myip:8000/assets/test.yaml Opening in a browser just results in file download...
Any thoughts?