如何在 iPhone 应用程序中设置当前日期的日期格式?

发布于 2024-12-06 06:08:01 字数 351 浏览 3 评论 0原文

我正在开发一个应用程序。我编写了以下代码来设置当前日期的 DateFormat 。但它只能工作到第 9 个月。从第 10 个月起,它给出零值。那么请告诉我如何解决这个问题。我的代码如下:

 NSDate *datestr = clInfo.cldrinfodate;
 NSDateFormatter *dateFormat1 = [[NSDateFormatter alloc] init];
 [dateFormat1 setDateFormat:@"MM/dd/yyyy hh:mma"];
 NSString *date1 = [dateFormat1 stringFromDate:datestr];

I am developing one application. In that i write the below code for setting the DateFormat for current date. But it is working upto 9th month only. From 10th month onwards it gives the nil value. So please tell me how to solve this one. My code is as below:

 NSDate *datestr = clInfo.cldrinfodate;
 NSDateFormatter *dateFormat1 = [[NSDateFormatter alloc] init];
 [dateFormat1 setDateFormat:@"MM/dd/yyyy hh:mma"];
 NSString *date1 = [dateFormat1 stringFromDate:datestr];

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

巨坚强 2024-12-13 06:08:01

你可以试试这个。

     NSDate * mCurrentDate = [NSDate date];

    NSLog(@"current date=%@",mCurrentDate);
    NSDateFormatter *dt=[[NSDateFormatter alloc] init];

    [dt setDateFormat:@"yyyy-MM-dd HH:mm:ss"];

    NSString *st=[dt stringFromDate:mCurrentDate];

you can try this one.

     NSDate * mCurrentDate = [NSDate date];

    NSLog(@"current date=%@",mCurrentDate);
    NSDateFormatter *dt=[[NSDateFormatter alloc] init];

    [dt setDateFormat:@"yyyy-MM-dd HH:mm:ss"];

    NSString *st=[dt stringFromDate:mCurrentDate];
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文