2010-12-16 14 views
0

__CFXNotificationPost_old(gdb内)にブレークポイントを設定しようとしていますが、決して停止しないようです。'__CFXNotificationPost_old'でブレークポイントがヒットしない

私は、次のコードを持って、それをデバッグしようとしています:

- (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 ]; 
} 
+0

誰があなたに '__CFXNotificationPost_old'にブレークポイントを設定するように指示しましたか? – Yuji

+0

http://ftplistchecker.mmsguru.com/blogger/?action=news&id=1284804265 – Egil

答えて

0

3.2 SDKのCoreFoundationのバイナリにその名前のシンボルがありません。 4.1 SDKには1つあります。あなたは両方のSDKにある_CFXNotificationPostNotificationに幸運をもたらすかもしれません。

特に、コードでどのような問題が発生しているのか説明していないため、これがどのように提供されたコードのデバッグに関係するかは不明です。

関連する問題