How to get the OS X system version?

后端 未结 8 1927
一整个雨季
一整个雨季 2021-01-31 11:45

I want to get the OS X system version, such as: 10.5.4, 10.4.8, etc. I want to get it in my app, how do I do this? Thanks!

8条回答
  •  北恋
    北恋 (楼主)
    2021-01-31 12:11

    use this method it will return Mac OS X version

    +(SInt32) OSVersion;
    {
        SInt32 osxMinorVersion;
        Gestalt(gestaltSystemVersionMinor, &osxMinorVersion);
        return osxMinorVersion;
    } 
    

提交回复
热议问题