Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

this is my first post so please bear with me. I am writing an app that will start and stop two timers and display the start time, the stop time, and the timer but I need it to display the hours and tenths of minutes, i.e (4.5 hours) Not 4:30. Im pretty stumped.

Ive tried HH:mm.m and HH:mm/6 but Im just fishing.

Heres what I have so far

  • (void)updateTimer { static NSInteger counter = 0; stopWatchLabel.text = [NSString stringWithFormat:@"Block Time =: %i", counter++]; NSDate *currentDate = [NSDate date]; NSTimeInterval timeInterval = [currentDate timeIntervalSinceDate:startDate]; NSDate *timerDate = [NSDate dateWithTimeIntervalSince1970:timeInterval]; NSDateFormatter *dateFormatter = [[NSDateFormatter alloc] init]; [dateFormatter setDateFormat:@"HH:mm:ss"]; [dateFormatter setTimeZone:[NSTimeZone timeZoneForSecondsFromGMT:0.0]]; NSString *timeString=[dateFormatter stringFromDate:timerDate]; stopWatchLabel.text = timeString; [dateFormatter release]; }

  • (void)updateTimer2 { static NSInteger counter = 0; stopWatchLabel2.text = [NSString stringWithFormat:@"Flight Time =: %i", counter++]; NSDate *currentDate = [NSDate date]; NSTimeInterval timeInterval = [currentDate timeIntervalSinceDate:startDate2]; NSDate *timerDate = [NSDate dateWithTimeIntervalSince1970:timeInterval]; NSDateFormatter *dateFormatter = [[NSDateFormatter alloc] init]; [dateFormatter setDateFormat:@"HH:mm:ss"]; [dateFormatter setTimeZone:[NSTimeZone timeZoneForSecondsFromGMT:0.0]]; NSString *timeString=[dateFormatter stringFromDate:timerDate]; stopWatchLabel2.text = timeString; [dateFormatter release]; }

  • (IBAction)onStartPressed:(id)sender { startDate = [[NSDate date]retain];

    // Create the stop watch timer that fires every 10 ms stopWatchTimer = [NSTimer scheduledTimerWithTimeInterval:1.0/1.0 target:self selector:@selector(updateTimer) userInfo:nil repeats:YES];

    NSDate* dateNow = [NSDate date]; //Create the dateformatter object NSDateFormatter* formatter = [[[NSDateFormatter alloc] init] autorelease]; //Set the required date format [formatter setDateFormat:@"MMM-dd-yyyy HH:mm:ss'Z'"]; [formatter setTimeZone:[NSTimeZone timeZoneForSecondsFromGMT:0.0]]; //Get the string date NSString* strr = [formatter stringFromDate:dateNow]; //Display on the console NSLog(strr); //Set in the lable [blocktimeStart setText:strr];

}

  • (IBAction)onStartPressed2:(id)sender { startDate2 = [[NSDate date]retain];

    // Create the stop watch timer that fires every 10 ms stopWatchTimer2 = [NSTimer scheduledTimerWithTimeInterval:1.0/1.0 target:self selector:@selector(updateTimer2) userInfo:nil repeats:YES]; NSDate* date = [NSDate date]; //Create the dateformatter object NSDateFormatter* formatter = [[[NSDateFormatter alloc] init] autorelease]; //Set the required date format [formatter setDateFormat:@"MMM-dd-yyyy HH:mm:ss"]; [formatter setTimeZone:[NSTimeZone timeZoneForSecondsFromGMT:0.0]]; //Get the string date NSString* str = [formatter stringFromDate:date]; //Display on the console NSLog(str); //Set in the lable [flighttimeStart setText:str];

}

  • (IBAction)onStopPressed:(id)sender { [stopWatchTimer invalidate]; stopWatchTimer = nil; NSDate* date = [NSDate date]; //Create the dateformatter object NSDateFormatter* formatter = [[[NSDateFormatter alloc] init] autorelease]; //Set the required date format [formatter setDateFormat:@"MMM dd yyyy HH:mm:ss"]; [formatter setTimeZone:[NSTimeZone timeZoneForSecondsFromGMT:0.0]]; //Get the string date NSString* str = [formatter stringFromDate:date]; //Display on the console NSLog(str); //Set in the lable [blocktimeStop setText:str]; }

  • (IBAction)onStopPressed2:(id)sender { [stopWatchTimer2 invalidate]; stopWatchTimer2 = nil; NSDate* date = [NSDate date]; //Create the dateformatter object NSDateFormatter* formatter = [[[NSDateFormatter alloc] init] autorelease]; //Set the required date format [formatter setDateFormat:@"MMM dd yyyy HH:mm:ss"]; [formatter setTimeZone:[NSTimeZone timeZoneForSecondsFromGMT:0.0]]; //Get the string date NSString* str = [formatter stringFromDate:date]; //Display on the console NSLog(str); //Set in the lable [flighttimeStop setText:str]; }

  • (IBAction)onResetPressed:(id)sender { stopWatchLabel.text = @"00:00:00"; blocktimeStart.text = @"Start Block Time"; blocktimeStop.text = @"Stop Block Time"; }

  • (IBAction)onResetPressed2:(id)sender { stopWatchLabel2.text = @"00:00:00"; flighttimeStart.text = @"Start Flight Time"; flighttimeStop.text = @"End Flight Time"; }

share|improve this question
"tenths of minutes" - seems like you really mean the tenths of hour, that is, you want to display the time interval in hours to 1 decimal place. – sawdust Aug 14 '12 at 19:52
yes... Im sorry. Thats exactly what i want. – user1598882 Aug 15 '12 at 15:50

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.