一个好的 mac os x 应用程序委托参考吗?
有谁知道有什么好的应用程序委托参考吗?它告诉您可以覆盖的函数以及它们的作用的类型?例如
- (BOOL) ApplicationWillTerminateAfterLastWindowIsClosed{
return YES;
}
谢谢
Does anyone know any good app delegation reference? The type where it tells you the functions you can override and what they do? e.g
- (BOOL) ApplicationWillTerminateAfterLastWindowIsClosed{
return YES;
}
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用苹果文档。在每个类参考中,您可以轻松找到委托协议参考的链接(如果存在)。例如在 NSTableView 类引用中 您可以看到符合部分(位于文档顶部),其中包含您需要的所有链接,包括指向 NSTableViewDelegate 协议引用的链接。
这意味着您知道所使用的类的主要功能,因此您只需要至少阅读该类文档的第一页。在那里您可以找到您需要的一切。
希望,有帮助。
Use apple documentation. In each class reference you can easily find link to delegate protocol reference (if it exists). For example in NSTableView class references you can see Conforms to section (at the top of document) with all links you need including link to NSTableViewDelegate protocol references.
It is implied that you know main features of class you used, so you need just to read at least first page of documentation for class. There you can find all you need.
Hope, it helps.