如何查明给定类是否充当对象的委托?

发布于 2024-11-27 22:52:53 字数 127 浏览 0 评论 0原文

在 Objective-C 中,如何确定给定的类是否充当给定类型的对象的委托?

我正在阅读的一本书建议检查 .h 文件,但是我不确定到底要查找什么。 .h 文件如何声明它的 .m 是某个对象的委托?

请澄清。

In Objective-C, how can one find out whether a given class serves as a delegate for a given type of an object?

A book i am reading suggest examining the .h file, however i am not sure exactly what to look for. How would .h file declare that it's .m is a delegate for some object?

Please clarify.

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

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

发布评论

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

评论(1

琴流音 2024-12-04 22:52:53

如果委托类有其委托协议,您可以检查该类是否符合该协议。否则,查找委托应该实现的方法(例如 NSTableView 委托的 tableView:…: 系列方法)。

If the delegating class has a protocol for its delegate, you could check whether the class conforms to that protocol. Otherwise, look for the methods that the delegate is supposed to implement (e.g. the tableView:…: family of methods for an NSTableView delegate).

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