ラベル 00:00.0 とボタンがあります。ボタンを押すと、タイマーがラベルをカウントするようになるはずです。何回クリックしてもかまいません。ラベルをタップするとタイマーが停止し、同じラベルを2回タップするとリセットされます。
私はすべてを試しましたが、結果に到達できません:)誰か助けてください。
@interface MainViewController : UIViewController <FlipsideViewControllerDelegate> {
IBOutlet UILabel *stopWatchLabel;
NSTimer *stopWatchTimer; // Store the timer that fires after a certain time
NSDate *startDate; // Stores the date of the click on the start button
}
@property (nonatomic, retain) IBOutlet UILabel *stopWatchLabel;
- (IBAction)onStartPressed:(id)sender;
- (IBAction)onStopPressed:(id)sender;
- (void)updateTimer;