1、如何如何将一个字符串如“20110826134106”装化为任意的日期时间格式,下面列举两种类型:NSString* string =@"20110826134106";NSDateFormatter*inputFormatter = [[[NSDateFormatteralloc]init]a...
分类:
移动开发 时间:
2014-10-13 18:36:07
阅读次数:
239
1、NSString日期转换成某种格式下的NSDate+(NSDateFormatter*)chineseDateFormatter{ NSDateFormatter *dataformatter = [[NSDateFormatter alloc] init]; NSLocale *local.....
分类:
其他好文 时间:
2014-10-11 00:26:34
阅读次数:
462
一、将字符串时间转化为NSDate,并打印1 NSString *string = @"2013-08-12 20:13:43";2 3 NSDateFormatter *formatter = [[NSDateFormatter alloc] in...
分类:
其他好文 时间:
2014-09-04 16:46:39
阅读次数:
177
-(NSString*)countPublishTime:(NSString*)sDate{ NSDate*dtNow = [NSDatedate]; NSDateFormatter*dateFormatter = [[NSDateFormatteralloc]init]; [dateFormat....
分类:
移动开发 时间:
2014-09-02 19:47:55
阅读次数:
224
var date = NSDate.date() var timeFormatter = NSDateFormatter()timeFormatter.dateFormat = "MM-dd 'at' HH:mm:ss"var time = timeFormatter.stringFr...
分类:
编程语言 时间:
2014-08-29 14:24:47
阅读次数:
625
//是不是过了指定的天数- (BOOL) isAfterDays:(int) days { NSDate * sendDate = [NSDate date]; NSDateFormatter * dateFormatter = [[NSDateFormatter alloc] init...
分类:
其他好文 时间:
2014-08-26 19:39:28
阅读次数:
164
<spanstyle="font-size:18px;">//1.创建日期对象//创建的NSDate对象,获得的永远是0时区时间,如果要是求东八区时间,就加8个小时NSDate*date=[NSDatedate];NSLog(@"%@",date);//创建明天此时的日期(时间间隔都是以秒为单位计算的)NSDate*tomorrow=[NSDatedateWithTimeInter..
分类:
其他好文 时间:
2014-08-15 02:56:57
阅读次数:
280
有时候开发中我们只需要年月日、或者只需要时分秒,刚开始由于对NSDate不是很熟悉,走了很多弯路,特在此记录!!回头要好好把NSDate的文档好好看看
NSDate *date = _datePickerView.date;
NSDateFormatter *formatter = [[NSDateFormatter alloc]init];
// Get Current...
分类:
其他好文 时间:
2014-08-12 17:08:54
阅读次数:
172
//date根据formatter转换成string+(NSString*)dateToString:(NSString *)formatter date:(NSDate *)date{ NSDateFormatter *dateFormatter = [[NSDateFormatter al...
分类:
其他好文 时间:
2014-08-06 14:43:41
阅读次数:
159
两个时间段,判断之间的相差,做一些时间范围限制使用 NSDateFormatter * dateFormatter = [[NSDateFormatter alloc] init]; [dateFormatter setDateFormat:@"yyyyMMddHHmmss"]; NSDate...
分类:
移动开发 时间:
2014-08-05 13:37:29
阅读次数:
199