博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
iphone之判断设备是否为高清屏/判断当前版本
阅读量:6331 次
发布时间:2019-06-22

本文共 2004 字,大约阅读时间需要 6 分钟。

 #define isRetina ([UIScreen instancesRespondToSelector:@selector(currentMode)] ? CGSizeEqualToSize(CGSizeMake(640,960), [[UIScreen mainScreen] currentMode].size) : NO)

 

 

NSString*deviceType =[UIDevice currentDevice].model; if([deviceType isEqualToString:@"iPhone"]){
    //iPhone } elseif([deviceType isEqualToString:@"iPod touch"]){
    //iPod Touch } else{
    //iPad }
 
使用#if:
#ifdef  UI_USER_INTERFACE_IDIOM  
//注意此处没有括号
//UI_USER_INTERFACE_IDIOM 是枚举类型结构体,内有
typedefenum {
#if __IPHONE_3_2 <= __IPHONE_OS_VERSION_MAX_ALLOWED UIUserInterfaceIdiomPhone, // iPhone and iPod touch style UI 0 UIUserInterfaceIdiomPad, // iPad style UI 1 #endif } UIUserInterfaceIdiom;

 

//而UI_USER_INTERFACE_IDIOM()是定义的宏

#define UI_USER_INTERFACE_IDIOM() ([[UIDevice currentDevice] respondsToSelector:@selector(userInterfaceIdiom)]?[[UIDevice currentDevice] userInterfaceIdiom]:UIUserInterfaceIdiomPhone)
  #define IS_IPAD() (UI_USER_INTERFACE_IDIOM()==UIUserInterfaceIdiomPad) #else   #define IS_IPAD() (false) #endif
 
#if UI_USER_INTERFACE_IDIOM()==0  //==UIUserInterfaceIdiomPhone @implementationUINavigationBar(Custom height) -(CGSize)sizeThatFits:(CGSize)size {
    CGSize newSize =CGSizeMake(self.frame.size.width,44+BreadCrumbBarHeight-1);     return newSize; }     @end #endif

 

 

 

判断当前ios版本是否等于5.0

#ifdef __IPHONE_5_0   //if (__IPHONE_OS_VERSION_MAX_ALLOWED >= __IPHONE_5_0){      float version = [[[UIDevice currentDevice] systemVersion] floatValue];        if (version >= 5.0)   {        [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(keyBoardWillChange:) name:UIKeyboardWillChangeFrameNotification object:nil];    }#else    [[NSNotificationCenter defaultCenter]addObserver:self selector:@selector(keyBoardWillChange:) name:UIKeyboardWillShowNotification object:nil];        [[NSNotificationCenter defaultCenter]addObserver:self selector:@selector(keyBoardWillChange:) name:UIKeyboardWillHideNotification object:nil];#endif

转载地址:http://jxfoa.baihongyu.com/

你可能感兴趣的文章
【原】东拼西凑PBR(1):PBR基础
查看>>
react 从零开始搭建开发环境
查看>>
scala recursive value x$5 needs type
查看>>
ps -ef |grep 输出的具体含义
查看>>
markdown编辑
查看>>
ASCII 在线转换器
查看>>
Linux内核同步:RCU
查看>>
Android逆向进阶——让你自由自在脱壳的热身运动(dex篇)
查看>>
Java设计模式之五大创建型模式(附实例和详解)
查看>>
60 Permutation Sequence
查看>>
主流的RPC框架有哪些
查看>>
Hive学习之路 (七)Hive的DDL操作
查看>>
[转]mysql使用关键字作为列名的处理方式
查看>>
awesome go library 库,推荐使用的golang库
查看>>
树形展示形式的论坛
查看>>
jdbcTemplate 调用存储过程。 入参 array 返回 cursor
查看>>
C++中的stack类、QT中的QStack类
查看>>
Linux常用基本命令[cp]
查看>>
CSS 相对|绝对(relative/absolute)定位系列(一)
查看>>
关于 Nginx 配置 WebSocket 400 问题
查看>>