UIApplicationDelegate
has a method called applicationSignificantTimeChange:
that gets called when there is a significant change in the time.
The examples listed in the documentation are:
Examples of significant time changes include the arrival of midnight, an update of the time by a carrier, and the change to daylight savings time
But I would assume that timezone changes count as a significant time change.
The docs also say that if the time change happens when your app is in the background you will get it when you go to the foreground
If your application is currently suspended, this message is queued until your application returns to the foreground, at which point it is delivered.
You can also listen for UIApplicationSignificantTimeChangeNotification
to be posted to get the same information anywhere else in your app.
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…