gpt4 book ai didi

objective-c - 分类为 NSNotification 观察者?

转载 作者:太空狗 更新时间:2023-10-30 03:49:45 24 4
gpt4 key购买 nike

是否应该有一个静态的 NSNotification 观察器(如下面的代码)?我遇到了一些问题,我认为这可能是由于我的单例类结构所致。

我并不总是有类实例来收听通知,但此类的静态属性在我的应用程序的生命周期中一直存在。

- (id)init {
[super init]

[[NSNotificationCenter defaultCenter] addObserver:[self class]
selector:@selector(action:aNotification:)
name:@"NSSomeNotification"
object:nil];
return self;
}

+ (void)action:(NSNotification *)aNotification {
NSLog( @"Performing action" );
}

最佳答案

第一个问题可能是您的选择器 — 应该是 @selector(action:)

此外,您确定要在 init 中注册通知(缺少对 [super init] 的任何调用,这可能是另一个问题)?这意味着每次您创建该类的实例时,您的通知都会被(重新)注册。您可能会考虑实现真正的单例对象而不是类方法。

关于objective-c - 分类为 NSNotification 观察者?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4383478/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com