码迷,mamicode.com
首页 > 移动开发 > 详细

【代码笔记】iOS-获得现在的时间

时间:2017-06-29 10:10:59      阅读:259      评论:0      收藏:0      [点我收藏+]

标签:ios   div   sda   nal   omd   分享   nsdate   alt   call   

一, 代码。

技术分享
- (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-获得现在的时间

标签:ios   div   sda   nal   omd   分享   nsdate   alt   call   

原文地址:http://www.cnblogs.com/yang-guang-girl/p/7092637.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!