美文网首页
macOS 获取版本信息

macOS 获取版本信息

作者: 木马不在转 | 来源:发表于2022-10-11 15:32 被阅读0次
    一:获取软件版本号
    let appVersion = Bundle.main.object(forInfoDictionaryKey: "CFBundleShortVersionString")
    
    二:获取系统信息
    // 直接获取大版本
    let sys1Version = Bundle.main.object(forInfoDictionaryKey: "CFBundleVersion")
    // 更加详细
    let sys2Version = NSDictionary(contentsOfFile: "/System/Library/CoreServices/SystemVersion.plist")
    

    相关文章

      网友评论

          本文标题:macOS 获取版本信息

          本文链接:https://www.haomeiwen.com/subject/tbczartx.html