美文网首页
iOS 一些开发中的小工具类

iOS 一些开发中的小工具类

作者: MooMRiveR | 来源:发表于2017-10-11 14:39 被阅读0次

    1.浮点类型转时间类型

    float timeLength = 15.456734

    NSTimeInterval timeInterval = timeLength;

    NSInteger min = timeInterval / 60;

    //获取秒数

    NSInteger sec = (NSInteger)timeInterval % 60;

    相关文章

      网友评论

          本文标题:iOS 一些开发中的小工具类

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