ライブラリからウィンドウにボタンをドラッグしました。AppDelegate.h で IBAction にリンクされたボタンがあり、AppDelegate.m ファイルでボタンのタイトルを変更したいのですが、そのボタンにアクセスするにはどうすればよいですか? 「self.window....」と入力する必要があります。 setTitle:" か何か?ありがとう!
質問する
63 次
1 に答える
2
あなたIBOutlet
の場合NSButton
はmyButton
、
[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";
}
于 2013-03-09T14:45:36.840 に答える