私は自分のレーベルに接続しています:
@property (weak) IBOutlet NSTextField *scoreBox;
正しく、次のようにアクセスしようとしています:
void namedfunction(button) {
if (button == button) {
score = score + 100;
[scoreBox setIntValue:score];
// ^ error
}
}
そして、私はこのエラーが発生しています:
AppDelegate.m:52:10: 宣言されていない識別子 'scoreBox' の使用
私は何を間違っていますか?