(IOS)时间戳转时间

/**1.时间戳转换成时间*/

+ (NSString*)dateWithString:(NSString*)str Format:(NSString*)format

{

    NSTimeIntervaltime = [strdoubleValue];

    /** [[NSDate date] timeIntervalSince1970]*1000;*/

    NSDate *detaildate = [NSDate dateWithTimeIntervalSince1970:time];

    NSDateFormatter *dateFormatter = [[NSDateFormatter alloc] init];//实例化一个NSDateFormatter对象

    [dateFormattersetDateFormat:format];//设定时间格式,这里可以设置成自己需要的格式

    NSString*currentDateStr = [dateFormatterstringFromDate:detaildate];

    returncurrentDateStr;

}

/**2.时间戳转换时间-毫秒*/

+ (NSString*)dateMSWithString:(NSString*)str Format:(NSString*)format

{

    NSTimeIntervaltime = [strdoubleValue]/1000;

    /** [[NSDate date] timeIntervalSince1970]*1000;*/

    NSDate *detaildate = [NSDate dateWithTimeIntervalSince1970:time];

    NSDateFormatter *dateFormatter = [[NSDateFormatter alloc] init];//实例化一个NSDateFormatter对象

    [dateFormattersetDateFormat:format];//设定时间格式,这里可以设置成自己需要的格式

    NSString*currentDateStr = [dateFormatterstringFromDate:detaildate];

    returncurrentDateStr;

}

/**3.转换成时间*/

+(NSString*)dateWithDate:(NSDate*)date Format:(NSString*)format

{

    NSDateFormatter *dateFormatter = [[NSDateFormatter alloc] init];//实例化一个NSDateFormatter对象

    [dateFormattersetDateFormat:format];//设定时间格式,这里可以设置成自己需要的格式

    NSString*currentDateStr = [dateFormatterstringFromDate:date];

    returncurrentDateStr;

}

/**4.当前时间戳转换成时间*/

+ (NSString*)currentDateWithFormat:(NSString*)format

{

    NSDate*detaildate = [NSDatedate];

    NSDateFormatter *dateFormatter = [[NSDateFormatter alloc] init];//实例化一个NSDateFormatter对象

    [dateFormattersetDateFormat:format];//设定时间格式,这里可以设置成自己需要的格式

    NSString*currentDateStr = [dateFormatterstringFromDate:detaildate];

    returncurrentDateStr;

}

你可能感兴趣的:((IOS)时间戳转时间)