标签: iphone objective-c date nsstring strftime
我想从strftime获取一个日期(当前小时)并将其变成obj-c中的nsstring for iphone-os
答案 0 :(得分:3)
我建议使用NSDate的{{1}}。可以找到有关该呼叫的更多文档here。 API允许您指定要输出到descriptionWithCalendarFormat:timeZone:locale:的日期中的哪个组件,这是API的返回结果。
NSDate
descriptionWithCalendarFormat:timeZone:locale:
更新:如果您确实想要使用NSString,请从该调用中获取strftime - 类型的结果,并使用{将其转换为const char* {1}}。关于here的更多信息。
NSString
strftime
const char*
答案 1 :(得分:1)
http://dblog.com.au/iphone-development/iphone-sdk-tip-function-for-getting-formatted-date-string-as-nsstring/