NSNotifications 的所有类型是啥?

Posted

技术标签:

【中文标题】NSNotifications 的所有类型是啥?【英文标题】:What are all the types of NSNotifications?NSNotifications 的所有类型是什么? 【发布时间】:2011-02-22 01:59:08 【问题描述】:

你知道所有可能的 NSNotification 的完整列表吗?请告诉我。 谢谢。

【问题讨论】:

【参考方案1】:

这不是一个很有帮助的答案,恕我直言 - 很多通知很难找到,有些没有记录。

当我需要查看实际上是什么时,我会使用这样的东西:

// 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] );

【讨论】:

我同意!肯定会用这个 确实,这是更好的答案。超级有用的技巧,谢谢。【参考方案2】:

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

【讨论】:

以上是关于NSNotifications 的所有类型是啥?的主要内容,如果未能解决你的问题,请参考以下文章

使用 NSNotifications 从 TableViewController 导航回 UIViewController

如何从 UIWebView 嵌入式 YouTube 视频播放接收 NSNotifications

%[^\n] 在 scanf() 格式字符串中是啥意思

邻接表边节点是啥

常量方法指针的类型是啥?

python中的“容器”到底是啥? (以及所有的 python 容器类型是啥?)