我正在做Objective-c(iOS)开发。我可以知道如何将GMT +0的默认时区更改为GMT +8。 GMT +8适用于新加坡。
这是我的代码:
- (IBAction)dateChanged {
NSDate *choice = [datePick date];
NSString *words = [NSString alloc initWithFormat:@"%@", choice];
NSDateFormatter *dateFormat = [[NSDateFormatter alloc] init];
[dateFormat setDateFormat:@"yyyy-MM-dd HH:mm:ss"];
UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"You have selected:" message:words delegate:nil cancelButoonTitle:@"OK" otherBUttonTitles:nil, nil];
[alert show];
[alert release];
[words release];
}
感谢。
答案 0 :(得分:1)
你可以使用,
NSCalendar *calendar = [NSCalendar currentCalendar];
[calendar setTimeZone:[NSTimeZone timeZoneWithAbbreviation:@"UTC"]];
OR,
+ (id)timeZoneForSecondsFromGMT:(NSInteger)seconds
在你的情况下,
[calendar setTimeZone:[NSTimeZone timeZoneForSecondsFromGMT:8*60*60]];