0

ライブラリからウィンドウにボタンをドラッグしました。AppDelegate.h で IBAction にリンクされたボタンがあり、AppDelegate.m ファイルでボタンのタイトルを変更したいのですが、そのボタンにアクセスするにはどうすればよいですか? 「self.window....」と入力する必要があります。 setTitle:" か何か?ありがとう!

4

1 に答える 1

2

あなたIBOutletの場合NSButtonmyButton

[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 に答える