标签: ios json unix timestamp nsdate
我有一个iOS应用程序,可以从Twitter和Instagram等服务下载JSON提要。现在,一些服务为JSON提要中的每个帖子提供时间戳,如下所示:
"created_time": "1296748524"
然而,某些API会返回该帖子的日期,如下所示:
publishedAt = "2014-03-13T13:00:05.000Z"
我的应用需要一个时间戳才能运行。那么有没有办法将'publishedAt'转换为iOS中的UNIX时间戳?
感谢您的时间:)