自定义 NSDate DDMMYYYY

发布于 2024-11-25 00:47:56 字数 109 浏览 1 评论 0原文

我想获取用户输入的日期,但仅限于日、月和年。

这是如何使用日期格式化程序完成的?

是否可以创建没有小时、分钟、秒的日期?

这个自定义日期与其他日期相比如何?

I want to grab a date entered by the user, but only the day, month and year.

How is this done with a dateformatter?

Is it possible to create a date without hours, minutes, seconds?

How would this custom date be compared with to other dates?

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

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

发布评论

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

评论(1

心作怪 2024-12-02 00:47:56

从我的脑海中浮现出:

NSString * myString = @"23/11/1990";

NSDateFormatter * formatter = [[NSDateFormatter alloc]init];
[formatter setDateFormat:@"dd/MM/yyyy"];
NSDate * date = [formatter dateFromString:myString];

out of the top of my head:

NSString * myString = @"23/11/1990";

NSDateFormatter * formatter = [[NSDateFormatter alloc]init];
[formatter setDateFormat:@"dd/MM/yyyy"];
NSDate * date = [formatter dateFromString:myString];
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文