码迷,mamicode.com
首页 > 其他好文 > 详细

判断版本号

时间:2016-04-14 01:17:36      阅读:128      评论:0      收藏:0      [点我收藏+]

标签:

NSString * identifierForVendor =[[UIDevice currentDevice].identifierForVendor UUIDString];

    NSLog(@"%@dd",identifierForVendor);//唯一标识
    [[UIDevice currentDevice] name]; //设备名称
    [[UIDevice currentDevice] localizedModel];//设备的模型作为一个本地化的字符串
    [[UIDevice currentDevice] model];//设备的模型 如iPhone或者iPod touch
    [[UIDevice currentDevice] systemName] ;//系统名称
    if ([[UIDevice currentDevice].systemVersion doubleValue] > 8.0f) {
        NSLog(@" ios 9 %f",[[UIDevice currentDevice].systemVersion doubleValue]);
       
        NSLog(@"设备名称  %@", [[UIDevice currentDevice] name]);
        NSLog(@" 设备的模型作为一个本地化的字符串 %@", [[UIDevice currentDevice] localizedModel]);
        NSLog(@"设备的模型 如iPhone或者iPod touch %@", [[UIDevice currentDevice] model]);
        NSLog(@"系统名称 %@", [[UIDevice currentDevice] systemName]);

       
       
       
       
    }else{
        NSLog(@" ios 9 以下");
    };

判断版本号

标签:

原文地址:http://www.cnblogs.com/hangman/p/5389318.html

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