美文网首页
如何获取iPhone 设备版本号?

如何获取iPhone 设备版本号?

作者: zcaaron | 来源:发表于2016-07-08 22:20 被阅读21次

    宏指令

    #ifdef 
    __IPHONE_5_0   //5.0 or higher
    
    - (void) newMethod;
    
    #else
    
    - (void)oldMethod;
    
    #endif
    

    判断代码

    float version = [[[UIDevice currentDevice] systemVersion] floatValue];
    
    if(version >= 3.0){
    执行代码
    }
    
    
    

    相关文章

      网友评论

          本文标题:如何获取iPhone 设备版本号?

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