断点没有点击'__CFXNotificationPost_old'

时间:2010-12-16 08:34:31

标签: iphone objective-c xcode gdb

我试图在__CFXNotificationPost_old(在gdb中)设置一个断点,但似乎永远不会停止它。

我有以下代码,我正在尝试调试它:

- (void) notificationHandler:(NSNotification*)notification
{
    DLog(@"|NOTIFICATION| Name [%@] Sender [%@] UserData [%@]",
         notification.name,
         notification.object, 
         notification.userInfo);
}

- (void) startLogging
{
    [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(notificationHandler:) name:nil object:nil ];
}

1 个答案:

答案 0 :(得分:0)

3.2 SDK的CoreFoundation二进制文件中没有带该名称的符号。 4.1 SDK中有一个。你可能会在_CFXNotificationPostNotification上打破更多运气,这在两个SDK中都有。

目前尚不清楚这与调试提供的代码有何关系,特别是因为您没有解释您对代码有什么问题。