首页 > 代码库 > 系统版本判断

系统版本判断

 

 

As suggested by the official Apple docs: you can use the NSFoundationVersionNumber, from the NSObjCRuntime.h header file.

if (floor(NSFoundationVersionNumber) > NSFoundationVersionNumber_iOS_6_1) {    // here you go with iOS 7}

系统版本判断