I have an NSTimeInterval that is stored as a double. I would like to get the amount of minutes that are inide of the second value using the % operator.
int remainingSeconds = scratch % 60;
The error said "invalid operands to binary expression" point at % Help please.