NSNotifications的所有类型是什么?

m0r*_*mer 10 iphone xcode cocoa-touch objective-c ios

您是否知道所有可能的NSNotifications的完整列表?请告诉我.谢谢.

Ada*_*dam 33

这不是一个非常有用的答案,恕我直言 - 许多通知很难找到,有些是无证件.

当我需要看到实际存在的内容时,我会使用以下内容:

// inside your Application Delegate / main method / similar:

[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(onNotification:) name:nil object:nil];

-(void)onNotification:(NSNotification*)notification
{
NSLog(@"Notification name is %@ sent by %@",[notification name], [[notification object] description] );
}
Run Code Online (Sandbox Code Playgroud)


Chu*_*uck 8

通知名称可以是任意字符串,因此可能的通知数量实际上是无限的.大多数课程的文档将列出他们保证在给定时间发送的通知.