如何将委托分配给多个类

发布于 2024-11-25 13:19:58 字数 141 浏览 1 评论 0原文

我有一个自定义委托,我想要 2 个类来响应它的事件。我怎样才能将它分配给两个班级。

IE:

viewController.delegate = firstClass && self;

I have a custom delegate, and I want 2 classes to respond to it's events. How can I assign it to both classes.

ie:

viewController.delegate = firstClass && self;

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

最偏执的依靠 2024-12-02 13:19:58

您可以创建第三个类,通过将事件委托给这两个类来处理该事件。

viewController.delegate = delegatingClass;

...并在称为 delegatingClass 的对象中,通过在要处理事件的两个类上调用相同的方法来实现您关心的方法。例如:

void handleEvent( Event event ) {
    firstClass.handleEvent( event );
    otherClass.handleEvent( event );
}

You could create a third class that handles the event by delegating it to the two classes.

viewController.delegate = delegatingClass;

...and in the object referred to as delegatingClass, implement the method that you're concerned about by calling that same method on the two classes you want to handle the event. For example:

void handleEvent( Event event ) {
    firstClass.handleEvent( event );
    otherClass.handleEvent( event );
}
苏璃陌 2024-12-02 13:19:58

如果您需要在多个地方调用一个事件,您应该使用 NSNotificationCenter。

If you need an event to be called multiple places you should use NSNotificationCenter.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文