2016-09-15 150 views
0

我一直在嘗試2天,搜索高和低,無法獲得毫秒的工作。小時,分鐘&秒工作正常,但毫秒不會。TimePicker以毫秒爲單位倒計時

我已經做了一個lapCounter,它向上計數並且毫秒沒有問題。

下面是lapCounter,其計數的工作代碼和毫秒工作:

int hours = (UInt8)(elapsedTime /(60*60)); 
    int mins = (UInt8)(elapsedTime/60.0); 
    elapsedTime -= (mins * 60); 
    int secs = (UInt8)(elapsedTime); 
    elapsedTime -= (secs); 
    int mms = (UInt8)(elapsedTime * 100); 

但我不能讓TimePicker倒計時,工作。

這就是我對TimePicker倒計時:

int afterRemainder; 
int remainder; 
NSTimeInterval countDownTime; 
NSTimer *countDownTimer; 
bool startCountDown; 

- (IBAction)startCountDownButton:(id)sender { 
    if (startCountDown == false) { 
     countDownTime = (NSTimeInterval)_datePicker.countDownDuration; 
     remainder = countDownTime; 
     afterRemainder = countDownTime - remainder%60; 

     countDownTimer = [NSTimer scheduledTimerWithTimeInterval:1 target:self selector:@selector(updateCountDown) userInfo:nil repeats:YES]; 

     startCountDown = true; 
} 

-(void)updateCountDown { 
    afterRemainder --; 

    int hours = (int)(afterRemainder/(60 * 60)); 
    int mins = (int)(afterRemainder/60) - (60 * hours); 
    int secs = (int)(afterRemainder - (60 * mins) - (60 * hours * 60)); 
    int mms = (int)(afterRemainder - (3600 * secs) - (mins * 60)); 
    self.displayCountDown.text = [[NSString alloc] initWithFormat:@"%02d", hours]; 
    self.displayCountDownMins.text = [[NSString alloc] initWithFormat:@": %02d", mins]; 
    self.displayCountDownSecs.text = [[NSString alloc] initWithFormat:@"%02d", secs]; 
    self.displayCountDownMMs.text = [[NSString alloc] initWithFormat:@":%2d", mms]; 
} 
+0

定義 「不工作」。究竟是什麼問題?在你的問題中給出清晰的例子(不在評論中)。 – rmaddy

+0

@rmaddy嗨感謝張貼。毫秒不會以毫秒爲單位倒數。一些瘋狂的數字出現了,我嘗試了一切。 –

+0

@rmaddy這是數毫秒失敗的數學。 –

回答

0

試試這個:

@interface ViewController() 

@property (nonatomic, weak) IBOutlet UILabel *hours; 
@property (nonatomic, weak) IBOutlet UILabel *minutes; 
@property (nonatomic, weak) IBOutlet UILabel *seconds; 
@property (nonatomic, weak) IBOutlet UILabel *millisecs; 

@property (nonatomic, readwrite) NSTimeInterval counter; 
@property (nonatomic, strong) NSTimer *timer; 

@property (nonatomic, readwrite) int hoursInt; 
@property (nonatomic, readwrite) int minutesInt; 
@property (nonatomic, readwrite) int secondsInt; 
@property (nonatomic, readwrite) int millisecsInt; 

@end 

@implementation ViewController 

#define MS_COUNT_STEP 20.0 // Approx 50 fps 

- (IBAction)countUpPressed:(id)sender { 
    [self.timer invalidate]; 
    self.timer = [NSTimer scheduledTimerWithTimeInterval:MS_COUNT_STEP/1000.0 target:self selector:@selector(countUp) userInfo:nil repeats:YES]; 
} 

- (IBAction)countDownPressed:(id)sender { 
    [self.timer invalidate]; 
    self.timer = [NSTimer scheduledTimerWithTimeInterval:MS_COUNT_STEP/1000.0 target:self selector:@selector(countDown) userInfo:nil repeats:YES]; 
} 

- (void)countUp { 
    self.counter += (MS_COUNT_STEP/1000.0); 
} 

- (void)countDown { 
    self.counter -= (MS_COUNT_STEP/1000.0); 
} 

- (void)setCounter:(NSTimeInterval)counter { 
    _counter = counter; 
    [self updateUI]; 
} 

- (void)updateUI { 
    NSTimeInterval counter = _counter; 

    self.hoursInt = counter/3600; 
    counter -= ((int)self.hoursInt * 3600); 

    self.minutesInt = counter/60; 
    counter -= ((int)self.minutesInt * 60); 

    self.secondsInt = (int)counter; 
    counter -= self.secondsInt; 

    self.millisecsInt = counter * 1000; 
} 

- (void)setHoursInt:(int)value { 
    if (value != _hoursInt) { 
     _hoursInt = value; 
     self.hours.text = [NSString stringWithFormat:@"%i", value]; 
    } 
} 

- (void)setMinutesInt:(int)value { 
    if (value != _minutesInt) { 
     _minutesInt = value; 
     self.minutes.text = [NSString stringWithFormat:@"%i", value]; 
    } 
} 

- (void)setSecondsInt:(int)value { 
    if (value != _secondsInt) { 
     _secondsInt = value; 
     self.seconds.text = [NSString stringWithFormat:@"%i", value]; 
    } 
} 

- (void)setMillisecsInt:(int)value { 
    if (value != _millisecsInt) { 
     _millisecsInt = value; 
     self.millisecs.text = [NSString stringWithFormat:@"%i", value]; 
    } 
} 

@end 
+0

嗨,感謝代碼,它確實會產生毫秒,但我無法將它連接到datePicker。我在最後添加了代碼,關於我如何嘗試連接它。 –

+0

這就是我試圖將datePicker連接到你的「計數器」的方法。 { self.countDownTime =(NSTimeInterval)_datePicker.countDownDuration; remaining = self.countDownTime; _counter = self.countDownTime - 餘數; self.timer = [NSTimer scheduledTimerWithTimeInterval:MS_COUNT_STEP/1000.0 target:self selector:@selector(countDown)userInfo:nil repeatats:YES]; } –

+0

難道你只是使用:「self.counter = self.dataPicker.countDownDuration」? – norders

0

使用CADisplayLink,相反的NSTimer。

CADisplayLink對象是一個計時器對象,它允許應用程序將其繪圖與顯示刷新率同步。

使用[NSTimer scheduledTimerWithTimeInterval:1 ...],系統無法以該速度繪製標籤。