IOS 时间标签

自己整理下过去写过的一些小方法。

-(NSString*)Gettimelabel:(NSString*)dateStr

{

    //将传入时间转化成需要的格式

    NSDateFormatter *format=[[NSDateFormatteralloc] init];

    [format setDateFormat:@"yyyy-MM-dd HH:mm:ss"];

    NSDate *fromdate=[formatdateFromString:dateStr];

    NSString*FromDate=[formatstringFromDate:fromdate];

    float fromDay=[[[FromDatesubstringFromIndex:8]substringToIndex:2]floatValue];//显示的日期

    //获取当前时间

    NSDate *date = [NSDatedate];

    NSString*nowDate=[formatstringFromDate:date];

    float nowDay=[[[nowDatesubstringFromIndex:8]substringToIndex:2]floatValue];//今天的日期

    

    double intervalTime =[datetimeIntervalSinceReferenceDate]- [fromdatetimeIntervalSinceReferenceDate];

    

    long lTime = (long)intervalTime;

    NSInteger iSeconds = lTime %60;

    NSInteger iMinutes = (lTime /60) % 60;

    NSInteger iHours = (lTime /3600);

    NSInteger iDays = lTime/60/60/24;

    NSInteger iMonth = lTime/60/60/24/12;

    NSInteger iYears = lTime/60/60/24/365;

    

//以下可根据需求修改

         if (iYears> 0 )

        return [FromDatesubstringToIndex:10];//年月日

    else if(iMonth>0||iDays>0)

        return [[FromDatesubstringFromIndex:5]substringToIndex:5];//月日

    else if (iHours>0&&fromDay==nowDay)

        return [NSStringstringWithFormat:@"%@",[[FromDatesubstringFromIndex:11]substringToIndex:5]];//时分

    else if (iHours>0&&!(fromDay==nowDay))

        return [NSStringstringWithFormat:@"昨天"];//时分

    else if (iMinutes>0)

        return [NSStringstringWithFormat:@"%ld分钟前",iMinutes];//分钟

    else if (iSeconds>5)

        return [NSStringstringWithFormat:@"%ld秒前",iSeconds];//

    else if (iSeconds<=5)

        return [NSStringstringWithFormat:@"刚刚"];//

    else//年月日

        return FromDate;

}



  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值