I\'ve got an amount of seconds that passed from a certain event. It\'s stored in a NSTimeInterval data type.
seconds
NSTimeInterval
I want to convert it into
Since it's essentially a double...
Divide by 60.0 and extract the integral part and the fractional part.
The integral part will be the whole number of minutes.
Multiply the fractional part by 60.0 again.
The result will be the remaining seconds.