On 12 Mar 2015, at 01:09, Mutlu Qwerty <mutluqwe...@hotmail.com> wrote: > self.nextResponder = super.nextResponder //insert self into the > Responder chain
I think you mis-typed here. super nextResponder calls the superclass's implementation of -nextResponder, but it still just calls nextResponder with self being your object. So you're setting nextResponder to the value it already has. It's a no-op. Did you perhaps mean self.superview.nextResponder? -- Uli http://stacksmith.org _______________________________________________ Cocoa-dev mailing list (Cocoa-dev@lists.apple.com) Please do not post admin requests or moderator comments to the list. Contact the moderators at cocoa-dev-admins(at)lists.apple.com Help/Unsubscribe/Update your Subscription: https://lists.apple.com/mailman/options/cocoa-dev/archive%40mail-archive.com This email sent to arch...@mail-archive.com