Re: Responder Chain Confusion

2014-09-08 Thread dangerwillrobinsondanger
Intriguing. I will check that out for the future. I know there are at least a couple of chains. I just wish I knew more about the ups and downs of creating new chains. Without duplication and abuse, it's such a powerful pattern with Objective-C. Sent from my iPhone > On 2014/09/09, at 8:55, L

Re: Responder Chain Confusion

2014-09-08 Thread Lee Ann Rucker
If you’re targeting 10.7 or later, you can use supplementalTargetForAction:sender: to add a responder chain side branch without modifying the actual chain. On Sep 7, 2014, at 9:24 AM, dangerwillrobinsondan...@gmail.com wrote: > Hi all > > I just spent a bit of time poking around the responder

Re: Responder Chain Confusion

2014-09-07 Thread John Joyce
On 2014/09/08, at 8:49, dangerwillrobinsondan...@gmail.com wrote: > > > > >>> On 2014/09/08, at 3:16, Kyle Sluder wrote: >>> >>> On Sep 7, 2014, at 9:24 AM, dangerwillrobinsondan...@gmail.com wrote: >>> >>> Hi all >>> >>> I just spent a bit of time poking around the responder chain and ni

Re: Responder Chain Confusion

2014-09-07 Thread dangerwillrobinsondanger
>> On 2014/09/08, at 3:16, Kyle Sluder wrote: >> >> On Sep 7, 2014, at 9:24 AM, dangerwillrobinsondan...@gmail.com wrote: >> >> Hi all >> >> I just spent a bit of time poking around the responder chain and nil >> targeted actions. >> I built a view controller and a view hierarchy with con

Re: Responder Chain Confusion

2014-09-07 Thread Kyle Sluder
On Sep 7, 2014, at 9:24 AM, dangerwillrobinsondan...@gmail.com wrote: > > Hi all > > I just spent a bit of time poking around the responder chain and nil targeted > actions. > I built a view controller and a view hierarchy with controls that should be > configurable. > When instantiating the

Re: Responder Chain Confusion

2014-09-07 Thread Keary Suska
On Sep 7, 2014, at 10:24 AM, dangerwillrobinsondan...@gmail.com wrote: > I just spent a bit of time poking around the responder chain and nil targeted > actions. > I built a view controller and a view hierarchy with controls that should be > configurable. > When instantiating the view controll

Responder Chain Confusion

2014-09-07 Thread dangerwillrobinsondanger
Hi all I just spent a bit of time poking around the responder chain and nil targeted actions. I built a view controller and a view hierarchy with controls that should be configurable. When instantiating the view controller the interface allows configuring the action SEL of the controls. Reuse