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

Categories

0 votes
473 views
in Technique[技术] by (71.8m points)

iphone - get notification on timezone change in iOS

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

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

1 Answer

0 votes
by (71.8m points)

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.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...