gpt4 book ai didi

objective-c - 具有两个或多个操作的 NSButton

转载 作者:搜寻专家 更新时间:2023-10-30 19:41:36 25 4
gpt4 key购买 nike

我是 iOS 开发人员,我想开发一个 Mac 应用程序(它基本上是 iOS 应用程序的“端口”)。在 iOS 中的 IB 中,将一个 UIButton 连接到两个或多个操作非常容易。我注意到在 Mac 应用程序中我只能将 NSButton 连接到单个操作。有没有办法将 NSButton 连接到多个操作?

最佳答案

Is there a way to connect an NSButton to more than one action?

。这在 OSX Cocoa 应用程序中不受支持。

需要根据条件自行setAction:,但一次只能使用一个。

如果您想调用两个方法( Action ),您需要在 IBAction 方法中调用它们。

-(IBAction)multipleActions:(id)sender{
[self method1:sender];
[self method2:sender];
}

关于objective-c - 具有两个或多个操作的 NSButton,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16805255/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com