3

私がやりたいのは、 iPad で地域形式を英語から中国に変更したときに、時間形式を変更することです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、リージョン フォーマットの変更の通知には機能しません。これを行うことができる通知タイプはありますか?

4

1 に答える 1