如何从systemTimeZone(NSTimeZone)中提取时区((GMT + 05:30)

时间:2013-02-27 06:33:44

标签: iphone ios objective-c

任何人都可以从systemTimeZone(NSTimeZone)

中提取时区

我已经添加了样本。

NSTimeZone *localTime = [NSTimeZone systemTimeZone];
NSLog(@" - current  local timezone  is  %@",localTime);

我出去了如下 - 当前当地时区是亚洲/加尔各答(格林尼治标准时间+05:30)偏移19800

从上面说出如何单独获得区域.ie-仅GMT + 05:30

请帮帮我。

2 个答案:

答案 0 :(得分:5)

这会给你你想要的东西,

NSTimeZone *localTime = [NSTimeZone systemTimeZone];
NSLog(@" - current  local timezone  is  %@",[localTime abbreviation]);

答案 1 :(得分:0)

    NSTimeZone *localTime = [NSTimeZone systemTimeZone];
    NSLog(@" - current  local timezone  is  %@",[localTime abbreviation]);

我认为这很有帮助。