问题 = 无法将按钮操作(设置标签文本)反映到标签
- 说明背景 -
我定义了两个基本按钮(作为操作)并且我有一个标签(用作控件) - 见下文
@interface ViewController : UIViewController{
IBOutlet UILabel *stopWatchLabel;
}
- (IBAction)onStartPressed:(id)sender;
- (IBAction)onStopPressed:(id)sender;
@end
我已经在下面暗示了它,这样当我单击“开始”或“停止”按钮时,它应该反映在标签中——见下文——
- (IBAction)onStartPressed:(id)sender {
stopWatchLabel.text = @"START PRESSED";
}
- (IBAction)onStopPressed:(id)sender {
stopWatchLabel.text = @"STOP PRESSED";
}
但是,当我单击 START 按钮或 STOP 按钮(当我运行程序时)时,什么也没有发生?
有人请告诉我我错过了什么