代码笔记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-获得现在的时间的主要内容,如果未能解决你的问题,请参考以下文章

学习笔记:python3,代码片段(2017)

代码笔记iOS-iphone开发之获取系统字体

IOS开发-OC学习-常用功能代码片段整理

iOS代码片段CodeSnippets

如何使用 Swift 使用此代码片段为 iOS 应用程序初始化 SDK?

iOS常用于显示几小时前/几天前/几月前/几年前的代码片段