Re: NSNetService getInputStream:outputStream: and ARC

2011-12-08 Thread Martin Linklater
Thanks Ken - that did the trick. On 8 Dec 2011, at 22:17, Ken Thomases wrote: > On Dec 8, 2011, at 4:11 PM, Martin Linklater wrote: > >> Hi - I'm writing some OSX NSNetService code with ARC enabled, and I'm >> getting the following compile error with the following code: >> >> @property(strong)

Re: NSNetService getInputStream:outputStream: and ARC

2011-12-08 Thread Ken Thomases
On Dec 8, 2011, at 4:11 PM, Martin Linklater wrote: > Hi - I'm writing some OSX NSNetService code with ARC enabled, and I'm getting > the following compile error with the following code: > > @property(strong) NSInputStream* inputStream; > @property(strong) NSOutputStream* outputStream; > > - (v

Re: NSNetService getInputStream:outputStream: and ARC

2011-12-08 Thread John Pannell
Some insights here - hope it helps! http://developer.apple.com/library/ios/#qa/qa1546/_index.html#//apple_ref/doc/uid/DTS40011324 John On Dec 8, 2011, at 3:11 PM, Martin Linklater wrote: > Hi - I'm writing some OSX NSNetService code with ARC enabled, and I'm getting > the following compile err

NSNetService getInputStream:outputStream: and ARC

2011-12-08 Thread Martin Linklater
Hi - I'm writing some OSX NSNetService code with ARC enabled, and I'm getting the following compile error with the following code: @property(strong) NSInputStream* inputStream; @property(strong) NSOutputStream* outputStream; - (void)netServiceDidResolveAddress:(NSNetService *)sender { [s