> > ... sssssooooo .... is your category method -lastName being called? > > > I'm able to get the correct value from gdb but it looks like my method > isn't called or is wrong implemented...
If the method isn't called, that's the more important problem (since whether it's correctly implemented or not is irrelevant if it's not even given a chance to execute). So set a breakpoint on your method and use the debugger to see if it ever stops at that breakpoint. Or simply put an NSLog() statement in there before the return and say something like @"I made it! YAY! That'll show that stupid, stupid Idiot Savant!". If your method is being called, then the value you're retrieving from the address book entry is wrong somehow. Also, if you're not familiar with the debugger, read the documentation and post any followup questions to the xcode-users list (as it isn't Cocoa specific). -- I.S. _______________________________________________ Cocoa-dev mailing list ([email protected]) 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 [EMAIL PROTECTED]
