博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
IOS开发之不同版本适配问题2(#ifdef __IPHONE_7_0)(转载)
阅读量:6103 次
发布时间:2019-06-20

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

继续说说ios不同版本之间的适配

先说一个东西:在xcode当中有一个东西叫targets,苹果的官方文档是这样说的:

A target specifies a product to build and contains the instructions for building the product from a set of files in a project or workspace. A target defines a single product; it organizes the inputs into the build system—the source files and instructions for processing those source files—required to build that product. Projects can contain one or more targets, each of which produces one product.(省略若干字)

简单翻译过来就是一个target详细说明了要构建的产品,包含了一个工程或工作目录中的文件当中的指令,貌似还是不太清楚。在谷歌搜了一下,发现这个关于target的解释还是不错的:

A target basically defines what it is you are building and how you are building it. You can add more targets if you would like to build more than one thing. This usually makes sense if you need to build several related things from the same project. For instance, you might want one target for a full, paid version of an application, and another target for a reduced, free version of an application. Both targets would include much of the same code and resources, but some of the settings would be different and you might have different files included with each. 

意思就是如果你想将一个应用分为付费完整版和免费简化版,这两个版本大部分代码是一样的,只有个别的设置和包含的文件不同,你就可以建一个application然后弄两个targets分别对应两个版本。

下面举个简单的例子来说明在iOS7.0和iOS6.1(以及更低版本)之间的适配问题(用的是xcode5.0,里边有6.1和7.0两个版本的sdk)

新建一个工程,默认的development target,base sdk以及模拟器的版本都是7.0,在AppDelegate中的didFinishLaunchingWithOptions方法里写下

  

  1. self.window.tintColor = [UIColor redColor];  

然后运行,这样是没有任何错误的。接下来将development target,base sdk以及模拟器的版本都改成6.1(注意默认的xcode是没有6.1的sdk的,需要自己另外导入)。然后运行,就会报错:

 

也就是说tintColor属性在iOS6.1中根本就没有,在编译时候就会出错。这时候如下加上判断语句也是没有用的,照样报错

  

  1. if ([[[UIDevice currentDevice] systemVersion] floatValue] >= 7.0) {  
  2.     self.window.tintColor = [UIColor redColor];  
  3. }  

遇见这种情况只能加上预处理语句,这样写:

  

  1. #ifdef __IPHONE_7_0  
  2.     if ([[[UIDevice currentDevice] systemVersion] floatValue] >= 7.0) {  
  3.         self.window.tintColor = [UIColor redColor];  
  4.     }  
  5. #endif  

这样编译通过就不会报错了……这是因为在sdk6.1下的usr/include下边有一个Availability.h文件,里边定义了一大堆宏,其中关于iphone的有

  

  1. #define __IPHONE_2_0     20000  
  2. #define __IPHONE_2_1     20100  
  3. #define __IPHONE_2_2     20200  
  4. #define __IPHONE_3_0     30000  
  5. #define __IPHONE_3_1     30100  
  6. #define __IPHONE_3_2     30200  
  7. #define __IPHONE_4_0     40000  
  8. #define __IPHONE_4_1     40100  
  9. #define __IPHONE_4_2     40200  
  10. #define __IPHONE_4_3     40300  
  11. #define __IPHONE_5_0     50000  
  12. #define __IPHONE_5_1     50100  
  13. #define __IPHONE_6_0     60000  
  14. #define __IPHONE_6_1     60100  
  15. #define __IPHONE_NA      99999  /* not available */  

而sdk7.0里边多了一行 

    1. #define __IPHONE_7_0     60100 

转载于:https://www.cnblogs.com/mrray/p/5711408.html

你可能感兴趣的文章
odd method
查看>>
python3 5月26日 time模块常用时间转换 &datetime()模块学习 random()
查看>>
实验二 201421420014
查看>>
koa-session 持久化
查看>>
addClass的用法和is函数的用法
查看>>
找水王
查看>>
UVA 11324 The Largest Clique 强连通分量 DP
查看>>
ReactiveCocoa Introduction(1/2)
查看>>
类和对象的分析
查看>>
杜绝做cp式程序员
查看>>
PHP如何清除COOKIE?PHP无法删除COOKIE?设置COOKIE有效期、COOKIE过期
查看>>
fork()函数、进程表示符、进程位置
查看>>
hdu3652(数位dp)
查看>>
博弈总结
查看>>
vue-cli的webpack打包,icon无法正确加载
查看>>
UNP总结 Chapter 2 传输层:TCP、UDP和SCTP
查看>>
mysql 数据类型
查看>>
(转) Java中的ReentrantLock和synchronized两种锁定机制的对比
查看>>
浮动与清除浮动
查看>>
pickle示例
查看>>