如何查明给定类是否充当对象的委托?
在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果委托类有其委托协议,您可以检查该类是否符合该协议。否则,查找委托应该实现的方法(例如 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).