码迷,mamicode.com
首页 > 移动开发 > 详细

iOS 计算时间差

时间:2014-12-04 21:33:23      阅读:312      评论:0      收藏:0      [点我收藏+]

标签:style   blog   io   ar   color   os   sp   for   on   

/**
 * 计算指定时间与当前的时间差
 * @param compareDate   某一指定时间 
 * @return 多少(秒or分or天or月or年)+前 (比如,3天前、10分钟前) 
 */
+(NSString *) compareCurrentTime:(NSDate*) compareDate
//                         
{
    NSTimeInterval  timeInterval = [compareDate timeIntervalSinceNow];
    timeInterval = -timeInterval;
    long temp = 0;
    NSString *result;
    if (timeInterval < 60) {
        result = [NSStringstringWithFormat:@"刚刚"];
    }
    else if((temp = timeInterval/60) <60){
       result = [NSStringstringWithFormat:@"%d分前",temp];
    }
    
    else if((temp = temp/60) <24){
        result = [NSStringstringWithFormat:@"%d小前",temp];
    }
     
    else if((temp = temp/24) <30){
        result = [NSStringstringWithFormat:@"%d天前",temp];
    }
    
    else if((temp = temp/30) <12){
        result = [NSStringstringWithFormat:@"%d月前",temp];
    }
    else{
        temp = temp/12;
        result = [NSStringstringWithFormat:@"%d年前",temp];
    }
    
    return  result;
}

 

iOS 计算时间差

标签:style   blog   io   ar   color   os   sp   for   on   

原文地址:http://www.cnblogs.com/lihaibo-Leao/p/4143754.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!