Re: NSView - trouble setting next responder on 10.10 - works okay on 10.9

2015-10-03 Thread Jonathan Mitchell
> On 3 Oct 2015, at 03:40, Quincey Morris > wrote: > > On Oct 2, 2015, at 15:03 , Jonathan Mitchell wrote: > > “When a view is assigned” sounds to me an awful lot like “when > [NSViewController setView:] is called”. You might

Re: NSView - trouble setting next responder on 10.10 - works okay on 10.9

2015-10-03 Thread Quincey Morris
On Oct 3, 2015, at 07:42 , Jonathan Mitchell wrote: > > The responder chain is, as you know, very flexible. I’m not accusing you of mistreating the responder chain, I’m accusing you of mistreating event handling. :) Event handling is based on the idea of hierarchical

Value of type '[AnyObject]!' has no member 'Generator'

2015-10-03 Thread Rick Mann
Why won't this compile? let devices = AVCaptureDevice.devices() // OKAY for device in devices { print("Device: \(device)") for f in device.formats // no member "Generator" { print(" format: \(f)") } } Each of the

Re: NSColorPanel and close box

2015-10-03 Thread Matthias Schmidt
> Am 01.10.2015 um 18:30 schrieb Matthias Schmidt : > > >> Am 30.09.2015 um 17:09 schrieb Matthias Schmidt : >> >> >>> Am 30.09.2015 um 16:11 schrieb Jens Alfke : >>> >>> >>> On Sep 30, 2015, at 12:04 AM, Matthias Schmidt