卡牌游戏场景中的场景:
用户在屏幕上移动一张卡片。作为移动的结果,卡片的坐标发生变化。如果发现卡片位于某个特定位置,我们会确保更新卡片对象(模型)以包含这些坐标。
但是 View 不应该直接与 Model 对话..,所以
View 不会直接更新 Card,而是通知其 Controller “Card 已着陆”。收到此通知后,我希望 Controller 更新卡片的位置而不是 View ( Controller 更新模型)
问题 1:
我对这种情况的思考是否正确?
问题 2:
是否可以将数据与通知一起发送到 Controller ?
Best Answer-推荐答案 strong>
您的场景不需要 NSNotifications :应该采用直接的基于委托(delegate)的方法。
View 应该定义一个委托(delegate)接口(interface),并提供一个非保留的delegate 属性。 Controller 应该实现委托(delegate)接口(interface),并将自己设置为 View 的委托(delegate)。然后 View 会通知它的委托(delegate),甚至不知道它通知了 Controller 。然后 Controller 会将通知传递给模型。
@protocol CardDelegate
-(void)cardHasLandedSOCard*)card atPositionSOPosition*)pos;
@end
@interface MyView
@property (weak, nonatomic,readwrite) id<CardDelegate> delegate;
@end
@implementation MyViewController
-(id)init { // This should be in your designated initializer
self = [super init];
if (self) {
MyView *view = [[MyView alloc] init];
view.delegate = self;
self.view = view;
}
return self;
}
-(void)cardHasLandedSOCard*)card atPositionSOPosition*)pos {
// Update the model
}
@end
@implementation MyView
@synthesize delegate;
-(void) doSomething {
// ...
if (cardHasLanded) {
[delegate cardHasLanded:card atPosition:pos];
}
// ... more code
}
@end
关于objective-c - 是否可以将数据作为 NSNotifications 的一部分传递?,我们在Stack Overflow上找到一个类似的问题:
https://stackoverflow.com/questions/9501360/
|