UPDATED
I have this method:
-(NSDate*)roundTo15:(NSDate*)dateToRound {
int intervalInMinute = 15;
// Create a NSDate object and a NSDateComponets object for us to use
NSDateComponents *dateComponents = [[NSCalendar currentCalendar] components:NSMinuteCalendarUnit fromDate:dateToRound];
// Extract the number of minutes and find the remainder when divided the time interval
NSInteger remainder = [dateComponents minute] % intervalInMinute; // gives us the remainder when divided by interval (for example, 25 would be 0, but 23 would give a remainder of 3
// Round to the nearest 5 minutes (ignoring seconds)
if (remainder >= intervalInMinute/2) {
dateToRound = [dateToRound dateByAddingTimeInterval:((intervalInMinute - remainder) * 60)]; // Add the difference
} else if (remainder > 0 && remainder < intervalInMinute/2) {
dateToRound = [dateToRound dateByAddingTimeInterval:(remainder * -60)]; // Subtract the difference
}
return dateToRound;
}
This is how I call the method:
item.timestamp = [self roundTo15:[[NSDate date] dateByAddingTimeInterval:60 * 60]];
Instruments says I am leaking a NSDate object when the following line is executed:
dateToRound = [dateToRound dateByAddingTimeInterval:(remainder * -60)];
So it is my item object I need to update with a new corrected NSDate. I tried by making a roundedDate and returning it like this: "return [roundedDate autorelease];", but then I got a bad access error. I did not understand the property way.
Thank you Søren