如何修改我在代码中从库中拖动的NSButton?

时间:2013-03-09 14:43:09

标签: objective-c xcode macos cocoa

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

1 个答案:

答案 0 :(得分:2)

如果您IBOutlet的{​​{1}}为NSButton,请使用

myButton

甚至

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

正如您所说,您已将按钮连接到IBAction,您只需执行以下操作:

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