我想要做的是在iPad中将区域格式从英语更改为中国时更改时间格式Settings->Gerneral->International->Region Format
.
我试过这个:
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(updateCalendar) name: UIApplicationSignificantTimeChangeNotification object:nil];
-(void)updateCalendar{
self.text=[Toolbox formatDate:dateFormatter WithFormateString:@"EEEE MMMM dd"];
}
Run Code Online (Sandbox Code Playgroud)
但它没有用.我UIApplicationSignificantTimeChangeNotification
无法收到任何通知.或许不适用于区域格式更改的通知.是否有通知类型可以做到这一点?
任何帮助都会得到感谢.谢谢!
注册NSCurrentLocaleDidChangeNotification
通知.当区域格式更改后用户返回应用程序时将调用此方法.
该UIApplicationSignificantTimeChangeNotification
通知是对时间的变化,而不是语言环境的变化.