如何将 strftime 中的日期放入 obj-c 中的 nsstring 中?
我想从 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我建议使用
NSDate
的descriptionWithCalendarFormat:timeZone:locale:
。有关调用的更多文档,请参阅 此处。 API 允许您指定要将日期中的哪个部分输出到NSString
,这是 API 的返回结果。更新:如果您确实想使用
strftime
,则从该调用中获取const char*
类型的结果并将其转换为NSString*
通过使用stringWithUTF8String
。有关该内容的更多信息 此处。I would recommend using
NSDate
'sdescriptionWithCalendarFormat: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 anNSString
, which is the return result of the API.Update: If you really want to use
strftime
then take theconst char*
-typed result from that call and convert it to anNSString*
by usingstringWithUTF8String
. More info on that here.http ://dblog.com.au/iphone-development/iphone-sdk-tip-function-for-getting-formatted-date-string-as-nsstring/
http://dblog.com.au/iphone-development/iphone-sdk-tip-function-for-getting-formatted-date-string-as-nsstring/