Contents

조회 수 901 댓글 0
?

단축키

Prev이전 문서

Next다음 문서

크게 작게 위로 아래로 댓글로 가기 인쇄
?

단축키

Prev이전 문서

Next다음 문서

크게 작게 위로 아래로 댓글로 가기 인쇄

# 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. [ios] GMT Date와 Local Date 변환하기

  2. [ios] GCD 변수 사용 예제

  3. [ios] FlckrFeed Example App (Swift)

  4. [ios] Facebook SDK 로그인 설명

  5. [ios] Facebook Cache 갱신하는 함수

  6. [ios] DJBros. (DJ요맨~)

  7. [ios] Did UIScrollView End Scrolling?

  8. [ios] Debug Extensions (from 종길 차장님 ㅋㅋ)

  9. [ios] DatePicker iOS 6.x 이하 디자인.

  10. [ios] Crashlytics, Fabfic 설치/설정

  11. [ios] CoreData 사용하기 (튜토리얼)

  12. [ios] binary를 C코드로 변환

Board Pagination Prev 1 ... 31 32 33 34 35 36 37 38 39 40 ... 71 Next
/ 71