iOSdate与字符串格式互转
1.date转字符串
string转date的方法NSDateFormatter*formatter =[[NSDateFormatter alloc]init];
//设置⽇期格式
[formattersetDateFormat:@"yyyy-MM-dd HH:mm:ss"];
//当前⽇期
NSDate*currentDate =[NSDate date];
NSString*currentDateString =[formatter stringFromDate:currentDate];
NSLog(@"%@",currentDateString);
2.字符串转化为date
NSDateFormatter* dateFormat = [[NSDate Formatteralloc]init];//实例化⼀个NSDateFormatter对象[date
Format setDateFormat:@"yyyy-MM-dd HH:mm:ss"];//设定时间格式,这⾥可以设置成⾃⼰需要的格式NSDate*date =[dateFormat dateFromString:@"1990-01-02 00:00:01"];

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。