0
我最小化托盤我的應用程序,然後更改時區,然後打開應用程序NSTimeZone返回時區的舊值。 如果我最小化托盤並再次打開時區返回新值。我該如何解決它?爲什麼更改後時區NSTimeZone返回舊時區
[[NSNotificationCenter defaultCenter] addObserver:self
selector:@selector(reloadVC)
name:UIApplicationWillEnterForegroundNotification
object:nil];
-(void) reloadVC{
NSTimeZone *currentTimeZone = [NSTimeZone localTimeZone];
NSLog(@"%@", currentTimeZone);
}