继承自 NSNotification
Inherit from NSNotification
我想创建 NSNotification
的子class。 我不想创建类别或其他任何内容。
您可能知道 NSNotification
是一个 Class 集群 ,例如 NSArray
或 NSString
.
我知道集群 class 的子 class 需要:
- 声明自己的存储
- 覆盖 superclass
的所有初始化方法
- 覆盖 superclass 的原始方法(如下所述)
这是我的子class(没什么好看的):
@interface MYNotification : NSNotification
@end
@implementation MYNotification
- (NSString *)name { return nil; }
- (id)object { return nil; }
- (NSDictionary *)userInfo { return nil; }
- (instancetype)initWithName:(NSString *)name object:(id)object userInfo:(NSDictionary *)userInfo
{
return self = [super initWithName:name object:object userInfo:userInfo];
}
- (instancetype)initWithCoder:(NSCoder *)aDecoder
{
return self = [super initWithCoder:aDecoder];
}
@end
当我使用它时,我得到了非凡的:
*** Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '*** initialization method -initWithName:object:userInfo: cannot be sent to an abstract object of class MYNotification: Create a concrete instance!'
为了从 NSNotification
继承,我还需要做什么?
问题在于试图调用超级class 初始化程序。你不能那样做,因为它是一个抽象 class。所以,在初始化程序中,你只需要初始化你的存储。
因为这太可怕了,所以我最终为 NSNotification
创建了一个类别。我在那里添加了三种方法:
- 我的自定义通知的静态构造函数:这里我配置
userInfo
用作存储。
- 向存储添加信息的方法:通知观察者将调用此方法更新
userInfo
。
- 处理观察者提交的信息的方法: post方法完成后,通知收集了所有需要的信息。我们只需要处理它并 return 它。如果您对收集数据不感兴趣,这是可选的。
归根结底,分类只是帮手处理userInfo
。
感谢@Paulw11的评论!
我想创建 NSNotification
的子class。 我不想创建类别或其他任何内容。
您可能知道 NSNotification
是一个 Class 集群 ,例如 NSArray
或 NSString
.
我知道集群 class 的子 class 需要:
- 声明自己的存储
- 覆盖 superclass 的所有初始化方法
- 覆盖 superclass 的原始方法(如下所述)
这是我的子class(没什么好看的):
@interface MYNotification : NSNotification
@end
@implementation MYNotification
- (NSString *)name { return nil; }
- (id)object { return nil; }
- (NSDictionary *)userInfo { return nil; }
- (instancetype)initWithName:(NSString *)name object:(id)object userInfo:(NSDictionary *)userInfo
{
return self = [super initWithName:name object:object userInfo:userInfo];
}
- (instancetype)initWithCoder:(NSCoder *)aDecoder
{
return self = [super initWithCoder:aDecoder];
}
@end
当我使用它时,我得到了非凡的:
*** Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '*** initialization method -initWithName:object:userInfo: cannot be sent to an abstract object of class MYNotification: Create a concrete instance!'
为了从 NSNotification
继承,我还需要做什么?
问题在于试图调用超级class 初始化程序。你不能那样做,因为它是一个抽象 class。所以,在初始化程序中,你只需要初始化你的存储。
因为这太可怕了,所以我最终为 NSNotification
创建了一个类别。我在那里添加了三种方法:
- 我的自定义通知的静态构造函数:这里我配置
userInfo
用作存储。 - 向存储添加信息的方法:通知观察者将调用此方法更新
userInfo
。 - 处理观察者提交的信息的方法: post方法完成后,通知收集了所有需要的信息。我们只需要处理它并 return 它。如果您对收集数据不感兴趣,这是可选的。
归根结底,分类只是帮手处理userInfo
。
感谢@Paulw11的评论!