如果您只想调试哪些侦听器正在侦听哪些通知,您可以很容易地记录此信息:
NSLog(@"%@", [NSNotificationCenter defaultCenter].debugDescription);
或
po [NSNotificationCenter defaultCenter]
将在调试器中打印出类似的内容:
<NSNotificationCenter:0x6080000c0070>
Name, Object, Observer, Options
NSWindowWillEnterFullScreenNotification, 0x7fff882e5958, 0x604000100cf0, 1400
NSAntialiasThresholdChangedNotification, 0x7fff882e5958, 0x100e00000, 1400
NSAntialiasThresholdChangedNotification, 0x7fff882e5958, 0x6040001e0300, 1400
NSAntialiasThresholdChangedNotification, 0x7fff882e5958, 0x100f1aa10, 1400
kCFLocaleCurrentLocaleDidChangeNotification, 0x7fff882e5958, 0x7fff882e5a38, 1001
...