美文网首页iOS
iOS 秒数转换成时间,时,分,秒

iOS 秒数转换成时间,时,分,秒

作者: 淋雨no2 | 来源:发表于2018-08-12 21:13 被阅读1760次

    //转换成时分秒

    - (NSString *)timeFormatted:(int)totalSeconds

    {

    int seconds = totalSeconds % 60;

    int minutes = (totalSeconds / 60) % 60;

    int hours = totalSeconds / 3600;

    return [NSString stringWithFormat:@"%02d:%02d:%02d",hours, minutes, seconds];

    }

    //转换成当前时刻

    - (NSString *)timeFormatted:(int)totalSeconds

    {

    NSDate  *date = [NSDate dateWithTimeIntervalSince1970:totalSeconds];

    NSTimeZone *zone = [NSTimeZone systemTimeZone];

    NSInteger interval = [zone secondsFromGMTForDate: date];

    NSDate *localeDate = [date  dateByAddingTimeInterval: interval];

    NSLog(@"enddate=%@",localeDate);

    }

    相关文章

      网友评论

        本文标题: iOS 秒数转换成时间,时,分,秒

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