服务器之家

服务器之家 > 正文

iOS开发之时间戳(或date)转字符串的实例代码

时间:2021-03-31 16:20     来源/作者:小圭哥

1.时间戳字符串

?
1
2
3
4
5
6
7
8
///时间戳转化为字符转0000-00-00 00:00
+ (NSString *)time_timestampToString:(NSInteger)timestamp{
 NSDate *confromTimesp = [NSDate dateWithTimeIntervalSince1970:timestamp];
 NSDateFormatter *dateFormat=[[NSDateFormatter alloc]init];
  [dateFormat setDateFormat:@"yyyy-MM-dd HH:mm"];
 NSString* string=[dateFormat stringFromDate:confromTimesp];
 return string;
}

1.Date转字符串

?
1
2
3
4
5
6
7
///date转化为字符转0000-00-00 00:00
+ (NSString *)time_dateToString:(NSDate *)date{
 NSDateFormatter *dateFormat=[[NSDateFormatter alloc]init];
 [dateFormat setDateFormat:@"yyyy-MM-dd HH:mm"];
 NSString* string=[dateFormat stringFromDate:date];
 return string;
}

总结

以上所述是小编给大家介绍的iOS开发之时间戳(或date)转字符串的实例代码,希望对大家有所帮助,如果大家有任何疑问欢迎给我留言,小编会及时回复大家的!

原文链接:http://www.cnblogs.com/wangkejia/p/7587378.html

标签:

相关文章

热门资讯

2020微信伤感网名听哭了 让对方看到心疼的伤感网名大全
2020微信伤感网名听哭了 让对方看到心疼的伤感网名大全 2019-12-26
yue是什么意思 网络流行语yue了是什么梗
yue是什么意思 网络流行语yue了是什么梗 2020-10-11
背刺什么意思 网络词语背刺是什么梗
背刺什么意思 网络词语背刺是什么梗 2020-05-22
Intellij idea2020永久破解,亲测可用!!!
Intellij idea2020永久破解,亲测可用!!! 2020-07-29
苹果12mini价格表官网报价 iPhone12mini全版本价格汇总
苹果12mini价格表官网报价 iPhone12mini全版本价格汇总 2020-11-13
返回顶部