美文网首页
2018-01-11 获取当前时间和对时间戳的转换

2018-01-11 获取当前时间和对时间戳的转换

作者: 破夕_____________ | 来源:发表于2018-01-11 09:28 被阅读13次

//获取当前时间(时分秒毫秒)

+ (NSString *)currentTime
{
    NSDate * currentDate = [NSDate date];
    NSDateFormatter * dateFormatter = [[NSDateFormatter alloc]init];
    [dateFormatter setDateFormat:@"YYYY/MM/dd hh:mm:ss SS"];
    NSString * dateString = [dateFormatter stringFromDate:currentDate];
    return dateString;
}

对时间戳的转换

+ (NSString *)processingTimeStampWithTimeInterval:(NSString *)timeInterval
{
    NSTimeInterval _interval = [timeInterval doubleValue];
    NSDate *date = [NSDate dateWithTimeIntervalSince1970:_interval];
    NSDateFormatter * objDateformat = [[NSDateFormatter alloc] init];
    [objDateformat setDateFormat:@"yyyy年MM月dd日 HH:mm"];
    return [objDateformat stringFromDate:date];
}

相关文章

网友评论

      本文标题:2018-01-11 获取当前时间和对时间戳的转换

      本文链接:https://www.haomeiwen.com/subject/ayhznxtx.html