代码笔记iOS-获得现在的时间
Posted 菜鸟and小白
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了代码笔记iOS-获得现在的时间相关的知识,希望对你有一定的参考价值。
一, 代码。
- (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-获得现在的时间的主要内容,如果未能解决你的问题,请参考以下文章