Please help me, im going insane.
I need to create an NSInputStream
so i can read a live preview from a camera over wifi.
liveViewStream is an NSInputStream
-Instance-Variable that is declared in my implementation like so:
@implementation MKSonyCamHandler{
NSInputStream *liveViewStream;
}
liveViewURL
is a valid URL that i can open in my browser when i connect to the camera's network (although i dont think that this makes any difference). I have checked that it exists, is not nil and holds the value that i expect.
But when i do this:
liveViewStream = [[NSInputStream alloc] initWithURL:liveViewURL];
DLog(@"%@", liveViewStream);
The DLog after the alloc-init commands will log "(null)" every time, and ill be damned if i know why. Has anybody ever encountered this? Am i missing something glaringly obvious here?
Its my first time working with NSStreams
, is there a common pitfall that might be the reason?
The docs clearly state that -initWithURL:
Creates and returns an initialized NSInputStream object that reads data from
the file at a given URL.
Any ideas? Im starting to feel really stupid here.
EDIT: i am using ARC.
Thanks everyone, i found it.
The thing is, my question already had all the clues i would have needed, because, like i wrote, NSStream`s -initWithURL: will
What I didn't see is that this is only true for local sources. If you want a remote host, (i had a wireless network connection) you need to use something else, because, and i quote the docs again here:
Well, for what its worth, you need to create a
CFReadStreamRef
and aCFWriteStreamRef
, and then use the magic functionCFStreamCreatePairWithSocketToHost
to connect them to your host. After that, you can cast them toNSInputStream
andNSOutputStream
respectively, and they will work as intended. Heres a code example from the docs:Hope this helps someone at some point.
@leparlon:
Im upvoting your answer, since you were definitly on the right track, suggesting the use of initWithData.