"applicationType" : "User",
"applicationDSID" : "41111549283",
"isInstalled" : "1",
"installType" : "0",
"originalInstallType" : "0",
"purchaserDSID" : "41111549283",
"bundleVersion" : "1",
"itemID" : 0,
"storeFront" : 0,
"isPurchasedReDownload" : 0,
"sdkVersion" : "10.2",
"applicationIdentifier" : "com.ppjb.carrier102.gr-bfb7fd10ea6bb7d0e055279b1dd26d6c86a2ce67-1493118182.63",
"bundleModTime" : "514846100"bundleModTime是什么意思?永远不要看到这种时间格式。知道吗?
发布于 2017-05-08 22:38:20
快速测试表明,该值是自参考日期以来的时间间隔:
let aDate = Date(timeIntervalSinceReferenceDate: 514846100)
print(aDate)
print(aDate.timeIntervalSinceReferenceDate)给出
2017-04-25 20:48:20 +0000 514846100.0
至于这个时间戳意味着什么,只有苹果知道。他们说
钥匙没有记录..。保留给苹果使用,你的应用程序必须忽略它。
https://stackoverflow.com/questions/43839702
复制相似问题