Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

can my application get any notification when device timezone changed? I want to get a notification when my application is foreground. NSTimezone does not worked for me as i have to continuously check for timezone.

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
483 views
Welcome To Ask or Share your Answers For Others

1 Answer

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.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...