将当前时间格式化为NSString

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了将当前时间格式化为NSString相关的知识,希望对你有一定的参考价值。

  1. NSDateFormatter *dateFormat = [[NSDateFormatter alloc] init];
  2. [dateFormat setDateFormat:@"HH:mm:ss"];
  3.  
  4. NSDate *now = [[NSDate alloc] init];
  5.  
  6. NSString* timeString = [dateFormat stringFromDate:now];
  7. [dateFormat release];
  8. [now release];

以上是关于将当前时间格式化为NSString的主要内容,如果未能解决你的问题,请参考以下文章

将浮点数格式化为 NSString 时截断多余的零

js将当前时间格式化为年-月-日 时:分:秒

如何在 SQL Server中 将日期格式化

如何在 SQL Server中 将日期格式化

JXDatePicker 使用 SimpleDateFormat 将 dd.MM.yy 格式化为当前世纪的 dd.MM.yyyy

将数据库日期格式化为 AM/PM 时间(vue)