¡@

Home 

2014/10/15 ¤U¤È 10:07:42

iphone Programming Glossary: ds1

Determine if current local time is between two times (ignoring the date portion)

http://stackoverflow.com/questions/2108223/determine-if-current-local-time-is-between-two-times-ignoring-the-date-portion

given timezone information to abbreviations accepted by NSTimeZone won't cover that here NSString tzs @ PST NSString ds1 @ 2000 01 01T10 00 00Z NSString ds2 @ 2000 01 01T17 00 00Z remove dates from given strings requirement was to ignore the.. 00Z NSString ds2 @ 2000 01 01T17 00 00Z remove dates from given strings requirement was to ignore the dates completely ds1 ds1 substringFromIndex 11 ds2 ds2 substringFromIndex 11 remove the UTC time zone designator from the end don't know what.. NSString ds2 @ 2000 01 01T17 00 00Z remove dates from given strings requirement was to ignore the dates completely ds1 ds1 substringFromIndex 11 ds2 ds2 substringFromIndex 11 remove the UTC time zone designator from the end don't know what it's..