菜鸟教程小白 发表于 2022-12-13 05:15:52

ios - 继承自 NSNotification


                                            <p><p>我想创建一个 <code>NSNotification</code> 的子类。 <strong>我不想创建类别或其他任何内容。</strong> </p>

<p>您可能知道 <code>NSNotification</code> 是一个 <strong>Class Cluster</strong>,如 <code>NSArray</code> 或 <code>NSString</code>。</p>

<p>我知道集群类的子类需要:</p>

<ul>
<li>声明自己的存储空间</li>
<li>覆盖父类(super class)的所有初始化方法</li>
<li>覆盖父类(super class)的原始方法(如下所述)</li>
</ul>

<p>这是我的子类(没什么花哨的):</p>

<pre><code>@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 = ;
}
- (instancetype)initWithCoder:(NSCoder *)aDecoder
{
    return self = ;
}

@end
</code></pre>

<p>当我使用它时,我得到了一个非凡的:</p>

<pre><code>*** Terminating app due to uncaught exception &#39;NSInvalidArgumentException&#39;, reason: &#39;*** initialization method -initWithName:object:userInfo: cannot be sent to an abstract object of class MYNotification: Create a concrete instance!&#39;
</code></pre>

<p>为了从 <code>NSNotification</code> 继承,我还需要做什么?</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>问题在于试图调用父类(super class)初始化程序。你不能这样做,因为它是一个抽象类。所以,在初始化器中你只需要初始化你的存储。</p>

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

<ul>
<li>我的自定义通知的静态构造函数:这里我将 <code>userInfo</code> 配置为用作存储。</li>
<li>向存储中添加信息的方法:通知观察者会调用它来更新<code>userInfo</code>。</li>
<li>observes提交信息的处理方法:post方法完成后,notification已经收集了所有需要的信息。我们只需要处理它并返回它。如果您对收集数据不感兴趣,这是可选的。</li>
</ul>

<p>说到底,category只是处理<code>userInfo</code>的 helper 。</p>

<p>谢谢 <a href="https://stackoverflow.com/users/3418066/paulw11" rel="noreferrer noopener nofollow">@Paulw11</a>供您发表评论!</p></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 继承自 NSNotification,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/28356714/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/28356714/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 继承自 NSNotification