What is the difference between [NSTimeZone localTimeZone] and [NSTimeZone systemTimeZone]?
What is the difference between [NSTimeZone localTimeZone] and [NSTimeZone systemTimeZone] ?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
According to the NSTimeZone reference of iOS, the
systemTimeZonerepresents the timezone used by the system (device) itself.The
localTimeZonereturns an object that represents the current default time zone for the application. The application can change its default timezone via thesetDefaultTimeZonecall.There are no exposed Cocoa APIs to change the system time zone, or to change another application’s time zone.