OS 根据Date获取x分钟前

 

?

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

30

31

32

33

34

35

36

37

38

39

40

41

42

43

44

45

46

47

48

49

50

51

52

53

54

55

56

57

58

59

60

61

62

63

64

65

66

67

68

69

70

- (NSString *)timeInfo {

    return [NSDate timeInfoWithDate:self];

}

 

+ (NSString *)timeInfoWithDate:(NSDate *)date {

    return [self timeInfoWithDateString:[self stringWithDate:date format:[self ymdHmsFormat]]];

}

 

+ (NSString *)timeInfoWithDateString:(NSString *)dateString {

    NSDate *date = [self dateWithString:dateString format:[self ymdHmsFormat]];

     

    NSDate *curDate = [NSDate date];

    NSTimeInterval time = -[date timeIntervalSinceDate:curDate];

     

    int month = (int)([curDate month] - [date month]);

    int year = (int)([curDate year] - [date year]);

    int day = (int)([curDate day] - [date day]);

     

    NSTimeInterval retTime = 1.0;

    if (time < 3600) { // 小于一小时

        retTime = time / 60;

        retTime = retTime <= 0.0 ? 1.0 : retTime;

        return [NSString stringWithFormat:@%.0f分钟前, retTime];

    } else if (time < 3600 * 24) { // 小于一天,也就是今天

        retTime = time / 3600;

        retTime = retTime <= 0.0 ? 1.0 : retTime;

        return [NSString stringWithFormat:@%.0f小时前, retTime];

    } else if (time < 3600 * 24 * 2) {

        return @昨天;

    }

    // 第一个条件是同年,且相隔时间在一个月内

    // 第二个条件是隔年,对于隔年,只能是去年12月与今年1月这种情况

    else if ((abs(year) == 0 && abs(month) <= 1)

             || (abs(year) == 1 && [curDate month] == 1 && [date month] == 12)) {

        int retDay = 0;

        if (year == 0) { // 同年

            if (month == 0) { // 同月

                retDay = day;

            }

        }

         

        if (retDay <= 0) {

            // 获取发布日期中,该月有多少天

            int totalDays = (int)[self daysInMonth:date month:[date month]];

             

            // 当前天数 + (发布日期月中的总天数-发布日期月中发布日,即等于距离今天的天数)

            retDay = (int)[curDate day] + (totalDays - (int)[date day]);

        }

         

        return [NSString stringWithFormat:@%d天前, (abs)(retDay)];

    } else  {

        if (abs(year) <= 1) {

            if (year == 0) { // 同年

                return [NSString stringWithFormat:@%d个月前, abs(month)];

            }

             

            // 隔年

            int month = (int)[curDate month];

            int preMonth = (int)[date month];

            if (month == 12 && preMonth == 12) {// 隔年,但同月,就作为满一年来计算

                return @1年前;

            }

            return [NSString stringWithFormat:@%d个月前, (abs)(12 - preMonth + month)];

        }

         

        return [NSString stringWithFormat:@%d年前, abs(year)];

    }

     

    return @1小时前;

}

 

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

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

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值