您好,欢迎来到二三娱乐。
搜索
您的当前位置:首页把秒数转换为时分秒格式

把秒数转换为时分秒格式

来源:二三娱乐

+(NSString*)TimeformatFromSeconds:(NSInteger)seconds

{

//format of hour

NSString *str_hour = [NSString stringWithFormat:@"%02d",seconds/3600];

//format of minute

NSString *str_minute = [NSString stringWithFormat:@"%02d",(seconds%3600)/60];

//format of second

NSString *str_second = [NSString stringWithFormat:@"%02d",seconds%60];

//format of time

NSString *format_time = [NSString stringWithFormat:@"%@:%@:%@",str_hour,str_minute,str_second];

return format_time;

}

Copyright © 2019- yule263.com 版权所有 湘ICP备2023023988号-1

违法及侵权请联系:TEL:199 1889 7713 E-MAIL:2724546146@qq.com

本站由北京市万商天勤律师事务所王兴未律师提供法律服务