gpt4 book ai didi

objective-c - 如何在代码中修改从库中拖动的 NSButton?

转载 作者:行者123 更新时间:2023-12-03 17:40:57 26 4
gpt4 key购买 nike

我将一个按钮从库拖到窗口中。我将按钮链接到 AppDelegate.h 中的 IBAction,现在我想更改 AppDelegate.m 文件中按钮的标题,我如何访问该按钮,我应该输入“self.window ....” setTitle:”或者其他什么?谢谢!

最佳答案

如果您的 IBOutletNSButtonmyButton 则使用

[self.myButton setTitle:@"New Title"];

甚至

[_myButton setTitle:@"New Title"]; //If you are using XCode4.4+ as @synthesize will be there creating _myButton.
<小时/>

正如您所说,您已将按钮连接到 IBAction,那么您可以简单地执行以下操作:

-(IBAction)buttonClick:(id)sender{
sender.title=@"New Title";
}

关于objective-c - 如何在代码中修改从库中拖动的 NSButton?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15311935/

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