如何在 iPhone 应用程序中显示设备日期和时间?
我总是在 iPhone 应用程序中与 NSDate 作斗争。我为美国客户开发了一款 iPhone 应用程序。该应用程序应显示今天的日期。我在我的应用程序中使用了以下代码。我在印度的日期显示正确。但是,该日期还显示了我在(美国)的客户的印度日期。我想显示 iPhone/iPad 设备的日期。
NSDate *today1 = [[NSDate alloc] init];
NSString *dates = [NSString stringWithFormat:@"%@",[today1 description]];
dates = [dates substringToIndex:10];
NSDateFormatter *dateFormat = [[NSDateFormatter alloc] init];
[dateFormat setDateStyle:NSDateFormatterBehaviorDefault];
[dateFormat setTimeZone:[NSTimeZone localTimeZone]];
[dateFormat setDateFormat:@"yyyy-MM-dd"];
NSDate *date = [dateFormat dateFromString:dates];
如何做到这一点?有什么建议/示例代码来解决这个问题吗?我花了 6 个小时来解决我的问题,但是我没有找到答案?请帮我。感谢您与我一起度过宝贵的时间。
Always i'm struggling with NSDate in iphone apps. I have developed one iphone app for US based client. The app should show the todays date. I have used the following code in my app. The date is showing correctly for me(Am in India). But, the date is also showing the india date for my client in (US). I want to show the date from the iphone/ipad device.
NSDate *today1 = [[NSDate alloc] init];
NSString *dates = [NSString stringWithFormat:@"%@",[today1 description]];
dates = [dates substringToIndex:10];
NSDateFormatter *dateFormat = [[NSDateFormatter alloc] init];
[dateFormat setDateStyle:NSDateFormatterBehaviorDefault];
[dateFormat setTimeZone:[NSTimeZone localTimeZone]];
[dateFormat setDateFormat:@"yyyy-MM-dd"];
NSDate *date = [dateFormat dateFromString:dates];
How to do this? Any suggestions/sample code to solve this? I has spend 6 hours to solve my problem but, i didn't find the answer? Please help me. Thanks to spend your valuable time with me.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用区域设置
请参阅以下代码取自 这里
更新了下面的答案
我已经测试过这应该可以开箱即用世界任何地方。
Use Locale
See code blow Taken from here
Updated answer below
I have tested this should work out of the box any where is the world.
尝试使用
Try using