Re: Binding and Observers

2009-12-09 Thread Gerriet M. Denkmann
On 9 Dec 2009, at 07:05, mmalc Crawford wrote: > > On Dec 8, 2009, at 2:17 am, Gerriet M. Denkmann wrote: > >> - (void)windowWillClose:(NSNotification *)notification >> { >> id f = [ ikView observationInfo ]; >> NSString *oi = [ f description ]; >> >> BOOL ok; >> NSStr

Re: Binding and Observers

2009-12-08 Thread mmalc Crawford
On Dec 8, 2009, at 2:17 am, Gerriet M. Denkmann wrote: > - (void)windowWillClose:(NSNotification *)notification > { > id f = [ ikView observationInfo ]; > NSString *oi = [ f description ]; > > BOOL ok; > NSString *obs = @"Observer:"; > NSString *kpa = @"Key pa

Re: Binding and Observers

2009-12-08 Thread Steve Steinitz
Hi Gerriet, On 8/12/09, gerr...@mdenkmann.de wrote: MyDocument.nib has an IKImageView and an NSSlider with it's value bound to myIkView.rotationAngle. But when I closed the window I got an exception complaining about some observers not beeing removed. Is it the 'Cannot remove observer...' e

Binding and Observers

2009-12-08 Thread Gerriet M. Denkmann
I have a document based app. MyDocument.h has: IBOutletIKImageView *myIkView; MyDocument.nib has an IKImageView and an NSSlider with it's value bound to myIkView.rotationAngle. Works perfectly. But when I closed the window I got an exception complaining about some observers n