博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
iOS实用小工具
阅读量:5093 次
发布时间:2019-06-13

本文共 2158 字,大约阅读时间需要 7 分钟。

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

方式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;

 

计算N天前日期

/** 获取指定天数前的日期 @param beforeDay 多少天之前 */- (NSString *)getDateBeforeDay:(NSInteger)beforeDay{    NSDateFormatter *dateFormat = [[NSDateFormatter alloc]init ] ;    [dateFormat setDateFormat:@"yyyy-MM-dd"] ;        NSString *localDateStr = @"";    BOOL isSystem = YES;//[ZTEConfigrationList currAppTimeZone]; 是否是系统时区    if (!isSystem) {        //获取本地时间        [dateFormat setTimeZone:[NSTimeZone timeZoneWithName:@"Asia/Hong_Kong"]];        localDateStr = [dateFormat stringFromDate:[NSDate date]];    } else {        localDateStr = [dateFormat stringFromDate:[NSDate date]] ;    }        NSDate *date = [dateFormat dateFromString:localDateStr];        //计算day天以前时间    NSDate *someDaysAgoDate = [NSDate dateWithTimeInterval:-(beforeDay-1) * 24 * 60 * 60 sinceDate:date];    return [dateFormat stringFromDate:someDaysAgoDate];}

当前2017-09-16 运行结果: 2017-09-18

 

转载于:https://www.cnblogs.com/HJiang/p/7425938.html

你可能感兴趣的文章
Python-Web框架的本质
查看>>
QML学习笔记之一
查看>>
App右上角数字
查看>>
从.NET中委托写法的演变谈开去(上):委托与匿名方法
查看>>
小算法
查看>>
201521123024 《java程序设计》 第12周学习总结
查看>>
新作《ASP.NET MVC 5框架揭秘》正式出版
查看>>
IdentityServer4-用EF配置Client(一)
查看>>
WPF中实现多选ComboBox控件
查看>>
读构建之法第四章第十七章有感
查看>>
Windows Phone开发(4):框架和页 转:http://blog.csdn.net/tcjiaan/article/details/7263146
查看>>
Unity3D研究院之打开Activity与调用JAVA代码传递参数(十八)【转】
查看>>
python asyncio 异步实现mongodb数据转xls文件
查看>>
TestNG入门
查看>>
【ul开发攻略】HTML5/CSS3菜单代码 阴影+发光+圆角
查看>>
IOS-图片操作集合
查看>>
IO—》Properties类&序列化流与反序列化流
查看>>
测试计划
查看>>
Mysql与Oracle 的对比
查看>>
jquery实现限制textarea输入字数
查看>>