- Java 双重比较
- java - 比较器与 Apache BeanComparator
- Objective-C 完成 block 导致额外的方法调用?
- database - RESTful URI 是否应该公开数据库主键?
所以我是 NSNotifications 的新手,我想知道范围是什么。 IE。如果我有一个应用程序委托(delegate)类,并且它是通知的接收者:
-(id)init
{
[ super init];
if (!self) return nil;
// Add to our notification
[[NSNotificationCenter defaultCenter] addObserver:self
selector:@selector(receiveUpdateRequest:)
name:@"RequestStatusUpdate"
object:nil];
return self;
}
并在接收时运行此方法:
- (void) receiveUpdateRequest:(NSNotification *) notification
{
// Check the Notification Name
if ([[notification name] isEqualToString:@"RequestStatusUpdate"]){
NSLog (@"Recieved Update Status!");
}
else {
NSLog(@"Recieved Notification: %@",[notification name]);
}
}
我可以这样发布通知吗:
[[NSNotificationCenter defaultCenter] postNotificationName:@"RequestStatusUpdate" object:self];
来 self 应用程序中任意位置的另一个对象实例?
甚至例如通过加载 NIB 实例化的对象:
summaryWindow = [[SummaryWindowController alloc] initWithWindowNibName:@"SummaryWindow" owner:globalStatusController];
我是否必须在我的 summaryWindow 类中配置任何其他内容才能调用 postNotificationName 方法。
或者换一种说法是 [NSNotificationCenter defaultCenter] 全局适用于我的应用程序中所有对象的所有实例,我假设这就是它应该如何工作但是目前当我通过我的 SummaryWindow 中的 IBAction 调用此方法时,通知好像没有收到。
我已经测试了 [NSThread currentThread] 和默认的通知中心,看起来我确实在线程和同一个通知中心(我认为它总是全局的)中。我只是在研究线程问题,因为它出现在其他几个线程上。
2011-08-22 20:57:11.452 AppName[23102:1307] Using Default Notification Center: <CFNotificationCenter 0x10012c900 [0x7fff7d302ea0]>
2011-08-22 20:57:20.366 AppName[23102:1307] Using Default Notification Center: <CFNotificationCenter 0x10012c900 [0x7fff7d302ea0]>
最佳答案
哇,太差劲了,我刚找到 [[NSNotificationCenter defaultCenter] removeObserver:self];在一些较早的代码中。我在 dealloc 中有它,但在我正在处理的另一个 NSTask 方法中,有些人是如何设法错过它的。
关于objective-c - NSNotificationCenter 作用域定义,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7153281/
今天有小伙伴给我留言问到,try{...}catch(){...}是什么意思?它用来干什么? 简单的说 他们是用来捕获异常的 下面我们通过一个例子来详细讲解下
我正在努力提高网站的可访问性,但我不知道如何在页脚中标记社交媒体链接列表。这些链接指向我在 facecook、twitter 等上的帐户。我不想用 role="navigation" 标记这些链接,因
说现在是 6 点,我有一个 Timer 并在 10 点安排了一个 TimerTask。之后,System DateTime 被其他服务(例如 ntp)调整为 9 点钟。我仍然希望我的 TimerTas
就目前而言,这个问题不适合我们的问答形式。我们希望答案得到事实、引用资料或专业知识的支持,但这个问题可能会引发辩论、争论、投票或扩展讨论。如果您觉得这个问题可以改进并可能重新打开,visit the
我就废话不多说了,大家还是直接看代码吧~ ? 1
Maven系列1 1.什么是Maven? Maven是一个项目管理工具,它包含了一个对象模型。一组标准集合,一个依赖管理系统。和用来运行定义在生命周期阶段中插件目标和逻辑。 核心功能 Mav
我是一名优秀的程序员,十分优秀!