問題 = ボタン アクション (ラベル テキストの設定) をラベルに反映できない
- 説明の背景 -
(アクションとして) 定義された 2 つの基本的なボタンがあり、1 つのラベル (コントロールとして機能) があります。以下を参照してください。
@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 ボタン (プログラムの実行時) をクリックしても、何も起こりませんか?
誰かが親切に私に何が欠けているのか教えてください