On Sep 21, 2011, at 8:01 AM, Richard Somers wrote: > Is there a secret to getting symbolic breakpoints to work? > Set symbolic breakpoint 'keyDown:' (without the quotes) and nothing happens.
The name has to be like “-[MyView keyDown:]”, otherwise it’s ambiguous which -keyDown: method you mean — there are dozens of implementations of that in classes in AppKit and your app. If you’re trying to set a breakpoint on any keyDown: call to any class, you can’t do that. Breakpoints are on code, not selectors. —Jens_______________________________________________ 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: http://lists.apple.com/mailman/options/cocoa-dev/archive%40mail-archive.com This email sent to arch...@mail-archive.com