菜鸟教程小白 发表于 2022-12-12 19:35:05

objective-c - 是否可以将数据作为 NSNotifications 的一部分传递?


                                            <p><p><em>卡牌游戏场景中的场景:</em></p>

<p>用户在屏幕上移动一张卡片。作为移动的结果,卡片的坐标发生变化。如果发现卡片位于某个特定位置,我们会确保更新卡片对象(模型)以包含这些坐标。</p>

<p>但是 View 不应该直接与 Model 对话..,所以</p>

<p>View 不会直接更新 Card,而是通知其 Controller “Card 已着陆”。收到此通知后,我希望 Controller 更新卡片的位置而不是 View ( Controller 更新模型)</p>

<p><strong>问题 1:</strong>
我对这种情况的思考是否正确?</p>

<p><strong>问题 2:</strong>
是否可以将数据与通知一起发送到 Controller ?</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>您的场景不需要 <code>NSNotifications</code>:应该采用直接的基于委托(delegate)的方法。</p>

<p> View 应该<em>定义</em>一个委托(delegate)接口(interface),并提供一个非保留的<code>delegate</code>属性。 Controller 应该<em>实现</em>委托(delegate)接口(interface),并将自己设置为 View 的委托(delegate)。然后 View 会通知它的委托(delegate),甚至不知道它通知了 Controller 。然后 Controller 会将通知传递给模型。</p>

<pre><code>@protocol CardDelegate
-(void)cardHasLanded:(SOCard*)card atPosition:(SOPosition*)pos;
@end

@interface MyView
@property (weak, nonatomic,readwrite) id&lt;CardDelegate&gt; delegate;
@end

@implementation MyViewController
-(id)init { // This should be in your designated initializer
    self = ;
    if (self) {
      MyView *view = [ init];
      view.delegate = self;
      self.view = view;
    }
    return self;
}
-(void)cardHasLanded:(SOCard*)card atPosition:(SOPosition*)pos {
    // Update the model
}
@end

@implementation MyView
@synthesize delegate;
-(void) doSomething {
    // ...
    if (cardHasLanded) {
      ;
    }
    // ... more code
}
@end
</code></pre></p>
                                   
                                                <p style="font-size: 20px;">关于objective-c - 是否可以将数据作为 NSNotifications 的一部分传递?,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/9501360/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/9501360/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: objective-c - 是否可以将数据作为 NSNotifications 的一部分传递?