如何在"设置"中更改"区域格式"时获取通知

kon*_*ong 3 notifications ios

我想要做的是在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无法收到任何通知.或许不适用于区域格式更改的通知.是否有通知类型可以做到这一点?

任何帮助都会得到感谢.谢谢!

rma*_*ddy 9

注册NSCurrentLocaleDidChangeNotification通知.当区域格式更改后用户返回应用程序时将调用此方法.

UIApplicationSignificantTimeChangeNotification通知是对时间的变化,而不是语言环境的变化.