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 获得现在的时间代码,希望对大家有所帮助