码迷,mamicode.com
首页 > 移动开发 > 详细

判断ios版本

时间:2014-08-20 12:12:22      阅读:188      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   使用   os   io   ar   div   

在AppDelegate方法里,添加类方法

+ (NSInteger)OSVersion;

实现为

+ (NSInteger)OSVersion
{
    static NSUInteger _deviceSystemMajorVersion = -1;
    static dispatch_once_t onceToken;
    dispatch_once(&onceToken, ^{
        _deviceSystemMajorVersion = [[[[[UIDevice currentDevice] systemVersion] componentsSeparatedByString:@"."] objectAtIndex:0] intValue];
    });
    return _deviceSystemMajorVersion;
}

使用时先导入

#import "AppDelegate.h"

直接使用[AppDelegate OSVersion]获取信息,如7,6等

判断ios版本,布布扣,bubuko.com

判断ios版本

标签:style   blog   color   使用   os   io   ar   div   

原文地址:http://www.cnblogs.com/xiaochaozi/p/3924129.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!