ios Xcode中Project和Targets的区别
当打开xcode工程的时候会出现如图所示的界面,products包括Project和Target两块内容,一个工程只能有一个project但是可以有多个Target
那么怎么理解Target呢,官方给出这样的解释: Targets that define the products to build. A target organizes the files and instructions needed to build a product into a sequence of build actions that can be taken。
也就是说一个target对应一个新的产品(但是代码是相同的,只有配置不同),
不同的Target中有不同的Info.plist文件,这里包含了很多iphone项目中的很多关键性的内容
想让在代码上体现出差异化:个target到现在就创建好了,你添加资源文件的时候,通过选择添加的target来控制不同版本的内容;再说一下预编译宏的事情:target->Build Setting,搜索:Preprocessor Macros,设置Debug和Release里的预编译宏内容,比如TARGET_VERSION_LITE=1表示lite版本(注意=前后不能右空格,有空格会编译不过),程序中对不同版本这样判断:
#if TARGET_VERSION_LITE ==1
...
#elif TARGET_VERSION_LITE ==2
...
#endif