Views 825 Votes 0 Comment 0
?

Shortcut

PrevPrev Article

NextNext Article

Larger Font Smaller Font Up Down Go comment Print
?

Shortcut

PrevPrev Article

NextNext Article

Larger Font Smaller Font Up Down Go comment Print

# Local Date -> GMT Date

NSDate *localDate = <<your local date>>;

NSTimeInterval timeZoneOffset =
    [[NSTimeZone systemTimeZone] secondsFromGMTForDate:localDate];

// NOTE the "-" sign!
NSDate *gmtDate =
    [localDate dateByAddingTimeInterval:-timeZoneOffset];


# GMT Date -> Local Date

NSDate *gmtDate  = <<your gmt date>>

NSTimeInterval timeZoneOffset =
    [[NSTimeZone systemTimeZone] secondsFromGMTForDate:gmtDate];

NSDate *localDate =
    [gmtDate dateByAddingTimeInterval:timeZoneOffset];


[출처] http://stackoverflow.com/questions/1862905/nsdate-convert-date-to-gmt

?

  1. No Articles
Board Pagination Prev 1 ... 70 71 72 73 74 Next
/ 74