NSNotifications的所有类型是什么?

时间:2011-02-22 01:59:08

标签: iphone objective-c cocoa-touch xcode ios

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

2 个答案:

答案 0 :(得分: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] );
}

答案 1 :(得分:8)

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