我的应用程序中有一个要求,我需要使用swift显示.ipa文件创建日期。
任何人都可以告诉我该怎么做。
提前致谢。
答案 0 :(得分:3)
您可以使用Bundle属性executableURL获取应用的网址,并使用网址方法resourceValues获取包创建日期:
if let executableURL = Bundle.main.executableURL,
let creation = (try? executableURL.resourceValues(forKeys: [.creationDateKey]))?.creationDate {
print(creation)
}