NSDate *nowDate = [NSDate date]; NSDateFormatter *dateFormatter = [[NSDateFormatter alloc] init]; [dateFormatter setDateFormat:@"yyyy-MM-dd HH:mm:ss"]...
分类:
其他好文 时间:
2014-12-07 13:46:51
阅读次数:
193
NSDateFormatter *date=[[NSDateFormatter alloc] init]; [date setDateFormat:@"yyyy-MM-dd HH:mm:ss"]; NSCalendar *cal=[NSCalendar currentCalendar];...
分类:
移动开发 时间:
2014-12-02 17:07:38
阅读次数:
154
//计算上报时间差
????????NSDateFormatter?*formatter?=?[[NSDateFormatter?alloc]?init];
????????[formatter?setDateFormat:@"YYYY-MM-dd?HH:mm:ss"];//设置你想要的格式,hh与HH的区别...
分类:
移动开发 时间:
2014-12-02 16:45:10
阅读次数:
186
- (NSDate
*)dateFromString:(NSString
*)dateString{
NSDateFormatter
*dateFormatter
=
[[NSDateFormatter
alloc]
init];
[dateFormatter
setDateFormat:
@"yyyy-MM-dd
H...
分类:
其他好文 时间:
2014-11-26 21:01:42
阅读次数:
207
1 NSString *string = @"2013-08-12 20:13:43";2 3 NSDateFormatter *formatter = [[NSDateFormatter alloc] init];4 //格式一定要一致,否则无法转换5 formatter.dateFormat =...
分类:
其他好文 时间:
2014-11-24 18:56:54
阅读次数:
113
IOS格式规范目录概述日期格式概述日期格式声明时间格式:NSDateFormatter *date_formatter = [[NSDateFormatter alloc] init];设值时间格式:[date_formatter setDateFormat:@"yyyy年MM月dd日HH时mm分s...
分类:
移动开发 时间:
2014-11-24 13:12:39
阅读次数:
270
在开发iOS程序时,有时候需要将时间格式调整成自己希望的格式,这个时候我们可以用NSDateFormatter类来处理。例如:如何将格式为“12-May-14 05.08.02.000000 PM”的时间转化成“2014/05/12 5:08:02”,下面是具体实现代码: NSString* tim...
分类:
移动开发 时间:
2014-11-14 17:22:42
阅读次数:
203
日期(NSDate)是NSString类的格式(stringWithFormat),也可以改变输出,如果需要输出年代信息等则需要进行转换,等等。NSDate存储的是世界标准时(UTC),输出时需要根据时区转换为本地时间。NSDateFormatter可以比较方便的进行格式转换。01//获取当前日期和...
分类:
其他好文 时间:
2014-11-07 16:47:20
阅读次数:
210
1.计算两个日期之间相差几天几小时几分钟 NSDateFormatter *dateFormatter=[[NSDateFormatter alloc] init];[dateFormatter setDateFormat:@"yyyy-MM-dd HH:mm:ss"];NSDate * send....
分类:
移动开发 时间:
2014-11-02 22:11:12
阅读次数:
176
需要用到NSDateFormatter这个类。1、字符串转换为日期[plain]NSDateFormatter* dateFormat = [[NSDateFormatter alloc] init];//实例化一个NSDateFormatter对象[dateFormat setDateFormat...
分类:
其他好文 时间:
2014-10-19 16:52:01
阅读次数:
163