将日期戳记为字符串

发布于 2024-08-10 04:55:28 字数 96 浏览 4 评论 0原文

我确信这是一个简单的问题,但我似乎无法在任何地方找到如何做到这一点。我需要使用当前日期并将其保存到字符串中。我不知道如何获得数据戳。 有人可以帮我吗? 谢谢您的宝贵时间! -杰夫

I'm sure this is a easy problem, but I just can not seem to find how to do this anywhere. I need to use the current Date and save it into a String. I do not know how to get the dat stamp.
Could someone please help me out?
Thank you for your time!
-Jeff

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

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

发布评论

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

评论(2

伴梦长久 2024-08-17 04:55:28

您需要根据 文档

NSDateFormatter *formatter = [[NSDateFormatter alloc] init];
[formatter setDateFormat:@"MM-dd-yy"];
NSString *date = [formatter stringFromDate:[NSDate date]];

You will need to set your format according to the docs

NSDateFormatter *formatter = [[NSDateFormatter alloc] init];
[formatter setDateFormat:@"MM-dd-yy"];
NSString *date = [formatter stringFromDate:[NSDate date]];
篱下浅笙歌 2024-08-17 04:55:28

使用 NSDateFormatter, 这里有一个链接举例说明

Use NSDateFormatter, heres a link with examples

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