标签:style class blog code color get
有没有那么一个时候,特别想知道现在的时间呢。上代码。
- (void)viewDidLoad { [super viewDidLoad]; // Do any additional setup after loading the view. self.title=@"RootViewController"; NSLog(@"------timer--now--%@",[self getTimeForNow]); } -(NSString *) getTimeForNow { NSDate * senddate=[NSDate date]; NSDateFormatter *dateformatter=[[NSDateFormatter alloc] init]; [dateformatter setDateFormat:@"YYYY-MM-dd HH:mm:ss"]; NSString *timeDate = [[NSString alloc] initWithString:[dateformatter stringFromDate:senddate]]; return timeDate ; }
打印出来的数据
2014-06-26 17:29:22.858 得到现在的时间[14745:60b] ------timer--now--2014-06-26 17:29:22
标签:style class blog code color get
原文地址:http://www.cnblogs.com/yang-guang-girl/p/3810515.html