OStack程序员社区-中国程序员成长平台

标题: ios - 继承自 NSNotification [打印本页]

作者: 菜鸟教程小白    时间: 2022-12-13 05:15
标题: ios - 继承自 NSNotification

我想创建一个 NSNotification 的子类。 我不想创建类别或其他任何内容。

您可能知道 NSNotification 是一个 Class Cluster,如 NSArrayNSString

我知道集群类的子类需要:

这是我的子类(没什么花哨的):

@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-推荐答案


问题在于试图调用父类(super class)初始化程序。你不能这样做,因为它是一个抽象类。所以,在初始化器中你只需要初始化你的存储。

因为这太可怕了,我最终为 NSNotification 创建了一个类别。在那里我添加了三种方法:

说到底,category只是处理userInfo的 helper 。

谢谢 @Paulw11供您发表评论!

关于ios - 继承自 NSNotification,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28356714/






欢迎光临 OStack程序员社区-中国程序员成长平台 (https://ostack.cn/) Powered by Discuz! X3.4