获取当前时间的简单方法

NSDate *currentDate = [NSDate date];//获取当前时间,日期

NSDateFormatter *dateFormatter = [[NSDateFormatter alloc] init];

[dateFormatter setDateFormat:@"YYYY-MM-dd hh:mm:ss SS"];

NSString *dateString = [dateFormatter stringFromDate:currentDate];

你可能感兴趣的:(获取当前时间的简单方法)