以编程方式添加 NSButton 子类?
我的应用程序中有一堆以编程方式创建的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
当你创建按钮时,不要将它们创建为 NSButtons,而是将它们创建为你的子类。例如,如果您有一个名为
MyButton
的NSButton
子类,而不是类似:您将拥有类似以下内容:
这样
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
calledMyButton
, instead of something like:You would have something like:
This way
button
will be an instance ofMyButton
.