I want to convert time hours minutes seconds to seconds in ios. Is there any in built method for this? How can I do this?
NSCalendar *gregorianCalendar = [[NSCalendar alloc] initWithCalendarIdentifier:NSGregorianCalendar];
NSDateComponents *componentsDiff = [gregorianCalendar components:NSHourCalendarUnit fromDate:[NSDate date]];
seconds = (((hours * 60) + minutes) * 60) + seconds;– Hot Licks Dec 14 '12 at 13:13