摘要: //将UTCDate(世界标准时间)转化为当地时区的标准Date(钟表显示的时间)//NSDate *date = [NSDate date]; 2018-03-27 06:54:41 +0000 //转化后:2018-03-27 14:54:41 +0000 -(NSDate *)getLocalDateFromUTCDate:(NSDate *)UTCDate{ NST... 阅读全文
posted @ 2019-05-22 09:57 OIMMZC 阅读(1411) 评论(0) 推荐(0) 编辑
摘要: 1.date转string 其实date转string只需要根据格式来就可以了,但是string转date需要注意事项 2.string转date //输出:2012-05-03 20:34:23 +0000 /* 转化的类型必须与dateFormat保持一致 2012-->y 5->m 4->d 阅读全文
posted @ 2019-05-22 09:42 OIMMZC 阅读(268) 评论(0) 推荐(0) 编辑