您是否知道所有可能的NSNotifications的全面列表?请让我知道。谢谢。
发布于 2011-02-22 10:09:36
通知名称可以是任意字符串,因此可能的通知数量实际上是无限的。大多数类的文档将列出保证它们在给定时间发送的通知。
发布于 2011-06-08 20:42:20
这不是一个很有帮助的答案,IMHO -很多通知很难找到,有些是没有记录的。
当我需要查看实际存在的内容时,我会使用以下内容:
// 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] );
}https://stackoverflow.com/questions/5073293
复制相似问题