如何使用Swift获取iOS APP存档日期

时间:2017-05-03 04:04:23

标签: ios iphone swift

我的应用程序中有一个要求,我需要使用swift显示.ipa文件创建日期。

任何人都可以告诉我该怎么做。

提前致谢。

1 个答案:

答案 0 :(得分:3)

您可以使用Bundle属性executableURL获取应用的网址,并使用网址方法resourceValues获取包创建日期:

if let executableURL = Bundle.main.executableURL,
    let creation = (try? executableURL.resourceValues(forKeys: [.creationDateKey]))?.creationDate {
    print(creation)
}