我想创建一个 NSNotification 的子类。 我不想创建类别或其他任何内容。
您可能知道 NSNotification 是一个 Class Cluster,如 NSArray 或 NSString 。
我知道集群类的子类需要:
- 声明自己的存储空间
- 覆盖父类(super class)的所有初始化方法
- 覆盖父类(super class)的原始方法(如下所述)
这是我的子类(没什么花哨的):
@interface MYNotification : NSNotification
@end
@implementation MYNotification
- (NSString *)name { return nil; }
- (id)object { return nil; }
- (NSDictionary *)userInfo { return nil; }
- (instancetype)initWithNameNSString *)name objectid)object userInfoNSDictionary *)userInfo
{
return self = [super initWithName:name objectbject userInfo:userInfo];
}
- (instancetype)initWithCoderNSCoder *)aDecoder
{
return self = [super initWithCoder:aDecoder];
}
@end
当我使用它时,我得到了一个非凡的:
*** Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '*** initialization method -initWithNamebject:userInfo: cannot be sent to an abstract object of class MYNotification: Create a concrete instance!'
为了从 NSNotification 继承,我还需要做什么?
Best Answer-推荐答案 strong>
问题在于试图调用父类(super class)初始化程序。你不能这样做,因为它是一个抽象类。所以,在初始化器中你只需要初始化你的存储。
因为这太可怕了,我最终为 NSNotification 创建了一个类别。在那里我添加了三种方法:
- 我的自定义通知的静态构造函数:这里我将
userInfo 配置为用作存储。
- 向存储中添加信息的方法:通知观察者会调用它来更新
userInfo 。
- observes提交信息的处理方法:post方法完成后,notification已经收集了所有需要的信息。我们只需要处理它并返回它。如果您对收集数据不感兴趣,这是可选的。
说到底,category只是处理userInfo 的 helper 。
谢谢 @Paulw11供您发表评论!
关于ios - 继承自 NSNotification,我们在Stack Overflow上找到一个类似的问题:
https://stackoverflow.com/questions/28356714/
|