我想创建一个 NSNotification
的子类。 我不想创建类别或其他任何内容。
您可能知道 NSNotification
是一个 Class Cluster,如 NSArray
或 NSString
。
我知道集群类的子类需要:
这是我的子类(没什么花哨的):
@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
继承,我还需要做什么?
问题在于试图调用父类(super class)初始化程序。你不能这样做,因为它是一个抽象类。所以,在初始化器中你只需要初始化你的存储。
因为这太可怕了,我最终为 NSNotification
创建了一个类别。在那里我添加了三种方法:
userInfo
配置为用作存储。userInfo
。说到底,category只是处理userInfo
的 helper 。
谢谢 @Paulw11供您发表评论!
关于ios - 继承自 NSNotification,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28356714/
欢迎光临 OStack程序员社区-中国程序员成长平台 (https://ostack.cn/) | Powered by Discuz! X3.4 |