'timer'에 해당되는 글 1건

  1. 2012.03.12 시간 표시
카테고리 없음2012. 3. 12. 15:26

- (NSString *)stringFromTimeInterval:(NSTimeInterval)interval {

    NSInteger ti = (NSInteger)interval;

    NSInteger seconds = ti % 60;

    NSInteger minutes = (ti / 60) % 60;

    NSInteger hours = (ti / 3600);

    return [NSString stringWithFormat:@"%02i:%02i:%02i", hours, minutes, seconds];

}

Posted by 다오나무