On Sep 21, 2011, at 13:25 , Richard Somers wrote: > Results of Xcode 4.1 symbolic breakpoint testing. > > lldb will not break on any Apple supplied library symbols. > > gdb will break on some Apple supplied library symbols but not all. > > [NSObject alloc] Yes > > [NSUndoManager alloc] No
There is no [NSUndoManager alloc] symbol. The method that gets executed when you invoke [NSUndoManager alloc] is [NSObject alloc]. It's not very unusual to add a dummy override to a subclass in order to break on method invocation to that subclass only, but it's nothing to do whether its a library symbol or not. _______________________________________________ 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