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