美文网首页
时分秒格式转化

时分秒格式转化

作者: eb7a9dac29d0 | 来源:发表于2017-08-19 17:00 被阅读0次

    - (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];

    }

    相关文章

      网友评论

          本文标题:时分秒格式转化

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