Full Disclosure: I am a mathematical moron
int hours = totalSeconds / (60 * 60);
int minutes = (totalSeconds / 60) % 60;
int seconds = totalSeconds % 60;
//int milliseconds ???
calculatedExposureTime.text = [NSString stringWithFormat:@"%02d:%02d:%02d:%02d", hours, minutes, seconds, milliseconds];
Say totalSeconds
was a fraction of a second (0.000156), how do I calculate and display time down to the millisecond?