Contents

조회 수 831 댓글 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] Facebook SDK 로그인 설명

  2. [ios] FlckrFeed Example App (Swift)

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

  4. [ios] GMT Date와 Local Date 변환하기

  5. [ios] GPS 이용 상태 확인

  6. [ios] How to set up clang formatter

  7. [ios] How To Use UIScrollView to Scroll and Zoom Content (Using Objective-C)

  8. [ios] How To Use UIScrollView to Scroll and Zoom Content (Using Swift)

  9. [ios] Hybrid 앱 스터디 발표 자료

  10. [ios] IB 없이 개발하기 (html)

  11. [ios] iCloud관련 저장 디렉토리

  12. [ios] In App Purchase 개발

Board Pagination Prev 1 ... 36 37 38 39 40 41 42 43 44 45 ... 98 Next
/ 98