首页 > 代码库 > 【代码笔记】iOS-获得现在的时间
【代码笔记】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-获得现在的时间
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。