[NSDate date] returns GMT on simulator… what time does it return on the device… ? And also how can I get the simulator time programmatically?
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.
It returns the current date and time. NSDate is timezone-independent. The
-descriptionof NSDate may be in GMT, but it’s not guarenteed.If you want to display or parse a date in a different timezone, use NSDateFormatter (and modify its timezone/locale property) or use
-descriptionWithLocale:.