introduction
xcconfig
The syntax of a file is relatively simple. Each configuration file consists of a series of key-value assignments, which have the following syntax:
BUILD_SETTING_NAME = value
Comments
xcconfig
There is only one way to comment files, that is//
。
include import other settings
Creatingxcconfig
When you have files, you can create multiple files according to your needs. That means that it can be passedinclude
Import keywords into otherxcconfig
configuration within. passinclude
Follow the keyword with double quotes, as follows:
#include ""
When searching for imported files, if/
Starting with an absolute path, for example:
// Indicates the exact file location#include "/Users/ws/Desktop/LoginApp-Conflict/Pods/Target Support Files/Pods-LoginApp/"
Or through the relative path,${SRCROOT}
The path is start:
#include "Pods/Target Support Files/Pods-LoginApp/"
variable
Variable definition, according toOC
Naming rules, only by capital letters, numbers and underscores (_
) group, in principle, capitalization, or not. The string can be"
It can be'
Number.
There are three special cases for variables:
- exist
xcconfig
variables defined inBuild Settings
If the same is true, then coverage will occur. Can be passed$(inherited)
, let the current variable inherit the original value of the variable. For example:
OTHER_LDFLAGS = -framework SDWebImage OTHER_LDFLAGS = $(inherited) -framework AFNetworking // OTHER_LDFLAGS = -framework SDWebImage -framework AFNetworking
Note ⚠️: Some variables cannot be passedxcconfig
Configure toBuild Settings
In, for example: configurationPRODUCT_BUNDLE_IDENTIFIER
Not working.
- Reference variables,
$()
and${}
Both writing methods are OK:
VALUE=Cat TEACHER=$(VALUE)-${VALUE}
- Condition variables, according to
SDK
、Arch
andConfigration
Condition the settings, for example:
// Specify `Configration` is `Debug`// Specify `SDK` as an emulator, as well as iphoneos*, macosx*, etc.// Specify the effective structure as `x86_64`OTHER_LDFLAGS[config=Debug][sdk=iphonesimulator*][arch=x86_64]= $(inherited) -framework "Cat"
Note ⚠️:Xcode 11.4
and later versions can be useddefault
, to specify the default value when the variable is empty:
$(BUILD_SETTING_NAME:default=value)
Priority (from high to low)
- Manual configuration
Target Build Settings
-
Target
Configured inxcconfig
document - Manual configuration
Project Build Settings
-
Project
Configured inxcconfig
document
The above is the detailed content of the sample tutorial for writing iOS xcconfig. For more information about writing iOS xcconfig, please pay attention to my other related articles!