委托和 IBAaction

发布于 2024-11-03 11:16:41 字数 45 浏览 0 评论 0原文

他们似乎在 Objective C 中完成了同样的事情。缺了对方能做什么呢?

They seem to accomplish the same thing in Objective C. What can one do without the other?

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

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

发布评论

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

评论(1

荒路情人 2024-11-10 11:16:41

例如:

  • 委托方法可以有返回值。
  • 同一操作可以有多个目标,但通常只有一个委托。
  • 目标操作机制(在语义上,不是严格地)绑定到预定义的控制事件,例如“值更改”、“触摸”等。委托方法可以是任何东西。
  • 委托方法可以有任意参数。操作方法始终具有相同的参数(发送者和事件,两者都是可选的)。

For example:

  • Delegate methods can have return values.
  • There can be multiple targets for the same action, but usually only one delegate.
  • The target-action mechanism is (semantically, not strictly) bound to predefined control events such as "value changed", "touch up", etc. Delegate methods can be anything.
  • Delegate methods can have arbitrary arguments. Action methods always have the same arguments (sender and event, both optional).
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文