iOS实用小工具

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了iOS实用小工具相关的知识,希望对你有一定的参考价值。

.计算时间间隔多少秒,可以使用到计算程序代码执行时间

方式1:

    CFTimeInterval begin = CFAbsoluteTimeGetCurrent();
    for (NSInteger i = 0; i< 5000; i++) {
        NSLog(@"123456");
    }
    CFTimeInterval end = CFAbsoluteTimeGetCurrent();

方式2:

    NSDate *begin = [NSDate date];
    for (NSInteger i = 0; i< 5000; i++) {
        NSLog(@"123456");
    }
    NSDate *end = [NSDate date];
    
    NSLog(@"%f",[end timeIntervalSinceDate:begin]);

方式3:

NSTimeInterval start = [[NSDate date] timeIntervalSince1970]*1;
    for (NSInteger i = 0; i< 5000; i++) {
        NSLog(@"------%ld",i);
    }
    NSTimeInterval end = [[NSDate date] timeIntervalSince1970]*1;
    NSTimeInterval value = end - start;
    int second = (int)value %60;//
    int minute = (int)value /60%60;
    int house = (int)value / (24 * 3600)%3600;
    int day = (int)value / (24 * 3600);
    NSString *str;
    if (day != 0) {
        str = [NSString stringWithFormat:@"耗时%d天%d小时%d分%d秒",day,house,minute,second];
    }else if (day==0 && house != 0) {
        str = [NSString stringWithFormat:@"耗时%d小时%d分%d秒",house,minute,second];
    }else if (day== 0 && house== 0 && minute!=0) {
        str = [NSString stringWithFormat:@"耗时%d分%d秒",minute,second];
    }else{
        str = [NSString stringWithFormat:@"耗时%d秒",second];
    }
    return str;

 

以上是关于iOS实用小工具的主要内容,如果未能解决你的问题,请参考以下文章

回归 | js实用代码片段的封装与总结(持续更新中...)

asp.net页面实用代码片段

分享几个实用的代码片段(附代码例子)

分享几个实用的代码片段(附代码例子)

分享几个实用的代码片段(第二弹)

分享几个实用的代码片段(第二弹)