代码语言
.
CSharp
.
JS
Java
Asp.Net
C
MSSQL
PHP
Css
PLSQL
Python
Shell
EBS
ASP
Perl
ObjC
VB.Net
VBS
MYSQL
GO
Delphi
AS
DB2
Domino
Rails
ActionScript
Scala
代码分类
文件
系统
字符串
数据库
网络相关
图形/GUI
多媒体
算法
游戏
Jquery
Extjs
Android
HTML5
菜单
网页交互
WinForm
控件
企业应用
安全与加密
脚本/批处理
开放平台
其它
【
ObjC
】
根据指定日期与现在日期时间对比相差几周几月
作者:
英娴
/ 发布于
2014/11/15
/
637
#define knewsTimeFormat @"yyyyMMddHHmmss" //你要传过来日期的格式 #define kLocaleIdentifier @"en_US" // 发布时间 - (NSString *)newsTime:(NSString *)newsTimes { NSDateFormatter *formatter = [[NSDateFormatter alloc] init]; formatter.dateFormat = knewsTimeFormat; formatter.locale = [[NSLocale alloc] initWithLocaleIdentifier:kLocaleIdentifier]; NSDate *date = [formatter dateFromString:newsTimes]; NSDate *now = [NSDate date]; // 比较帖子发布时间和当前时间 NSTimeInterval interval = [now timeIntervalSinceDate:date]; NSString *format; if (interval <= 60) { format = @"刚刚"; } else if(interval <= 60*60){ format = [NSString stringWithFormat:@"发布于前%.f分钟", interval/60]; } else if(interval <= 60*60*24){ format = [NSString stringWithFormat:@"发布于前%.f小时", interval/3600]; } else if (interval <= 60*60*24*7){ format = [NSString stringWithFormat:@"发布于前%d天", (int)interval/(60*60*24)]; } else if (interval > 60*60*24*7 & interval <= 60*60*24*30 ){ format = [NSString stringWithFormat:@"发布于前%d周", (int)interval/(60*60*24*7)]; }else if(interval > 60*60*24*30 ){ format = [NSString stringWithFormat:@"发布于前%d月", (int)interval/(60*60*24*30)]; } formatter.dateFormat = format; return [formatter stringFromDate:date]; }
试试其它关键字
同语言下
.
根据生日计算星座
.
精简的实现一个内存池
.
iOS索引搜索核心代码
.
iOS 搜索框
.
文件操作
.
UIWebView 加载本地网页
.
取消导航条对视图的影响
.
利用终端显示 隐藏文件
.
更改导航条背景颜色
.
iOS 字体斜体
可能有用的
.
根据生日计算星座
.
精简的实现一个内存池
.
iOS索引搜索核心代码
.
iOS 搜索框
.
文件操作
.
UIWebView 加载本地网页
.
取消导航条对视图的影响
.
利用终端显示 隐藏文件
.
更改导航条背景颜色
.
iOS 字体斜体
英娴
贡献的其它代码
(
25
)
.
文字浮在图片上方
.
图片上传工具类
.
通过管道获取一个进程的执行状态
.
消去重复字符
.
对图片进行马赛克处理,可控制模糊程度
.
检查输入的字符值 时候符合正则表达式规则
.
垂直居中
.
输出当前日期
.
输入一个表得到这个表的查询结果
.
逆序对数
Copyright © 2004 - 2024 dezai.cn. All Rights Reserved
站长博客
粤ICP备13059550号-3