This question is for iOS/Objective-c. I modified it from a similar PHP question asked by a fellow member.
A web service I am using, communicates time-intervals in ISO 8601: PnYnMnDTnHnMnS. I want to convert such formats to seconds. And vice versa. Seconds are a lot easier to calculate with.
Example interval values are:
PT1M or PT60S (1 minute) PT1H, PT60M or PT3600S (1 hour)
I need two functions: parse from such values to seconds: iso8601_interval_to_seconds() and from seconds into such intervals: iso8601_interval_from_seconds().
Can i use the NSDateFormatter setDateFormat method, if so what format should i set it to?