当我在 iPad 中将 Region Format 从 English 更改为 China 时,我想要做的是更改时间格式Settings->General->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"];
}
但它没有用。我收不到任何通知。也许UIApplicationSignificantTimeChangeNotification
不适用于区域格式更改的通知。是否有通知类型可以做到这一点?