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

?

List of Articles
No. Category Subject Author Date Views
885 Develop [ios] iOS 의 인앱구매 소개 file hooni 2014.04.29 3825
884 Develop [js] Array.splice() 설명 hooni 2014.04.24 3001
883 Develop [ios] 아이폰에서 진동(Vibrate) 기능 추가하기 hooni 2014.04.18 3452
882 Develop [ios] iOS 사운드 관련 프레임워크 hooni 2014.04.18 3013
881 Develop [ios] Sprite Kit & 사운드 재생시 백그라운드 진입시 앱이 비정상적으로 종료됨 hooni 2014.04.18 3387
880 Develop [ios] DatePicker iOS 6.x 이하 디자인. file hooni 2014.04.10 4056
879 Develop [ios] UIWebView 캐쉬 삭제 hooni 2014.04.08 3662
878 Develop [ios] UITableView 특정 Row만 Update hooni 2014.04.08 4774
877 System/OS [linux] resolv.con 초기화 되는 문제 hooni 2014.04.05 4616
876 System/OS [linux] CentOS 6.5 에서 "Bringing up interface eth0: Determining if ip address 121.78.127.197 is already in use for device eth0..." hooni 2014.04.05 4838
875 Develop [ios] CoreData 사용하기 (튜토리얼) hooni 2014.03.28 3176
874 Develop [ios] SQLite 사용하기(튜토리얼) + 샘플코드 file hooni 2014.03.28 3697
873 Develop [ios] iOS 7 이상 UIBarButtonItem 여백 file hooni 2014.03.27 4049
872 Develop [ios] 유용한 매크로 hooni 2014.03.26 3654
871 Develop [ios] Using protobuf(Protocol Buffers) on iPhone (iOS) file hooni 2014.03.20 4984
870 Develop [ios] Objective-C 프로퍼티의 strong, weak, assign file hooni 2014.03.17 4684
Board Pagination Prev 1 ... 17 18 19 20 21 ... 74 Next
/ 74