以编程方式添加 NSButton 子类?

发布于 2024-11-25 03:19:43 字数 82 浏览 6 评论 0原文

我的应用程序中有一堆以编程方式创建的 NSButton。如何在不使用 Interface Builder 的情况下设置这些 NSButton 的子类?

I have a bunch of programmatically created NSButtons in my app. How can I go about setting the subclass of these NSButtons without using Interface Builder?

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

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

发布评论

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

评论(1

好久不见√ 2024-12-02 03:19:43

当你创建按钮时,不要将它们创建为 NSButtons,而是将它们创建为你的子类。例如,如果您有一个名为 MyButtonNSButton 子类,而不是类似:

NSButton *button = [[NSButton alloc] initWithFrame:frame];

您将拥有类似以下内容:

MyButton *button = [[MyButton alloc] initWithFrame:frame];

这样 button 将是MyButton 的实例。

When you create the button, don't create them as NSButtons, create them as your subclass. For example, if you had a subclass of NSButton called MyButton, instead of something like:

NSButton *button = [[NSButton alloc] initWithFrame:frame];

You would have something like:

MyButton *button = [[MyButton alloc] initWithFrame:frame];

This way button will be an instance of MyButton.

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