一个好的 mac os x 应用程序委托参考吗?

发布于 2024-12-10 14:40:53 字数 164 浏览 0 评论 0原文

有谁知道有什么好的应用程序委托参考吗?它告诉您可以覆盖的函数以及它们的作用的类型?例如

- (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 技术交流群。

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

发布评论

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

评论(1

物价感观 2024-12-17 14:40:53

使用苹果文档。在每个类参考中,您可以轻松找到委托协议参考的链接(如果存在)。例如在 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.

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