配置文件,与target的配置

首先知道什么是配置文件(xconfig),什么是target ;

选择运行环境的时候,选的是不同的配置环境,还是不同的target

运行环境:

创建配置文件(例子)

1.创建common.xxconfig    newfile——>Configuration Settings File 

    里面写入

GCC_PREPROCESSOR_DEFINITIONS = $(inherited) SeverUrl='$(SeverUrl)’

2.创建debug.xxconfig

    里面写入 

SeverUrl = @"http:\/\/baidu.com"

#include "common.xcconfig"

2.创建release.xxconfig

    里面写入

SeverUrl = @"http:\/\/baidu.com"

#include "common.xcconfig"

配置环境的生成:

Manger Schemes ——>点击加号选择创建某个target的scheme

选中当前的scheme 然后 Edit schemes---选择配置文件就可以了

创建target如图1,2 是创建步骤  3,4是完成之后展现的 


你可能感兴趣的:(配置文件,与target的配置)