如何将 strftime 中的日期放入 obj-c 中的 nsstring 中?

发布于 2024-08-13 16:45:16 字数 67 浏览 3 评论 0原文

我想从 strftime 获取日期(当前小时)并将其放入 iphone-os 的 obj-c 中的 nsstring 中

i want to be get a date (the current hour) from strftime and get it into a nsstring in obj-c for the iphone-os

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

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

发布评论

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

评论(2

策马西风 2024-08-20 16:45:16

我建议使用 NSDatedescriptionWithCalendarFormat:timeZone:locale:。有关调用的更多文档,请参阅 此处。 API 允许您指定要将日期中的哪个部分输出到 NSString,这是 API 的返回结果。

更新:如果您确实想使用 strftime,则从该调用中获取 const char* 类型的结果并将其转换为 NSString* 通过使用 stringWithUTF8String。有关该内容的更多信息 此处

I would recommend using NSDate's descriptionWithCalendarFormat:timeZone:locale:. More documentation about the call can be found here. The API allows you to specify which component from a date you want output to an NSString, which is the return result of the API.

Update: If you really want to use strftime then take the const char*-typed result from that call and convert it to an NSString* by using stringWithUTF8String. More info on that here.

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