Re: Trying to get flagsChanged: to work

2009-04-26 Thread Mike Abdullah
On 25 Apr 2009, at 9:07PM, Sean McBride wrote: Dave DeLong (davedel...@me.com) on 2009-04-25 1:46 PM said: Interesting. Coming from the world of iPhone dev, this seems wrong to me. On the iPhone, a view's controller is in the chain by default. NSViewController was added in 10.5. Perhap

Re: Trying to get flagsChanged: to work

2009-04-25 Thread Sean McBride
Dave DeLong (davedel...@me.com) on 2009-04-25 1:46 PM said: >Interesting. Coming from the world of iPhone dev, this seems wrong to >me. On the iPhone, a view's controller is in the chain by default. NSViewController was added in 10.5. Perhaps automatically adding it to the chain would have cau

Re: Trying to get flagsChanged: to work

2009-04-25 Thread Dave DeLong
Interesting. Coming from the world of iPhone dev, this seems wrong to me. On the iPhone, a view's controller is in the chain by default. Putting the following into GroupListController's awakeFromNib made it work just fine: NSResponder * next = [groupList nextResponder]; [g

Re: Trying to get flagsChanged: to work

2009-04-25 Thread Jim Correia
On Sat, Apr 25, 2009 at 1:19 PM, Dave DeLong wrote: > It seems that the responder chain is not set up during awakeFromNib (even > though all the outlets are), because I moved the loop to my addGroup: > IBAction, where it printed off my chain.  My GroupListController was not in > the chain.  Shoul

Re: Trying to get flagsChanged: to work

2009-04-25 Thread Dave DeLong
After some more investigation... It seems that the responder chain is not set up during awakeFromNib (even though all the outlets are), because I moved the loop to my addGroup: IBAction, where it printed off my chain. My GroupListController was not in the chain. Shouldn't it be? Doesn't