0
我有一個標籤00:00.0和按鈕。當我按下按鈕時,定時器應該在標籤上進行計數,無論我要做多少次點擊。當我點擊標籤時,計時器應該停止,並且應該在同一標籤上的第二次點擊時重置。具有特定控件的NSTimer秒錶
我嘗試了一切,但我無法達到結果:)有人請幫助我。
@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;
爲什麼不粘貼你試過的一些代碼? –