欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  移动技术

iOS 获得现在的时间代码

程序员文章站 2023-12-21 12:45:04
一, 代码。 - (void)viewdidload { [super viewdidload]; // do any additional setu...

一, 代码。

- (void)viewdidload {
  [super viewdidload];
  // do any additional setup after loading the view, typically from a nib.
  
  //获得现在的时间
  [self currenttime];
}
#pragma -mark -functions
//计算现在的时间
- (void)currenttime
{
  //时间格式
  nsdateformatter *dateformatter = [[nsdateformatter alloc] init];
  [dateformatter setdateformat:@"yyyy-mm-dd hh:mm:ss"];
  //现在时间
  nsdate * currentdate = [nsdate date];
  nsstring * currentdatestring = [dateformatter stringfromdate: currentdate];
  nslog(@"---currentdatestring--%@",currentdatestring);
}

二,输出。

2015-10-23 10:15:24.928 计算现在的时间[1607:61610] ---currentdatestring--2015-10-23 10:15:24

以上所述是小编给大家介绍的ios 获得现在的时间代码,希望对大家有所帮助

上一篇:

下一篇: