Xcode中的构建设置修饰符有哪些?

前端之家收集整理的这篇文章主要介绍了Xcode中的构建设置修饰符有哪些?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我已经看到了一些使用的构建设置

$(PRODUCT_NAME:identifier)

使用:upper也使设置值为大写,但我不知道那些被调用内容并且找不到任何文档.有谁知道他们的名字或文件在哪里正确使用它们?

解决方法

文件/Developer/Library/PrivateFrameworks/DevToolscore.framework/Versions/A/DevToolscore有很多这样的:
[ 09:22 root@MacBookPro / ]# strings /Developer/Library/PrivateFrameworks/DevToolscore.framework/Versions/A/DevToolscore | egrep "(^:|^[a-z0-9]+$)"
:children.count=%lu
:name='%@'
:File='%@':Line=%lu:RefType=%@
:fileRef=%@:timestamp=%lu
:char-range=%@
:line-range=%@
:<range-type-%lu>=%@
:name='%@'
:name=%@:path='%@'
:name='%@'
:name='%@':buildSettings(%lu)=%@
:path='%@'
:quote
:identifier
:rfc1034identifier
:dir
:abs
:remoteRef='%@'
:File='%@':Head Revision=%@:Active Branch=%@
:scmProprties='%@':sandBoxEntry='%@'
.... SNIP ....
upper
environment
diagnostics
type
category
description
path
kind
message
ranges
alternate
start
edges
location
file

发现这个:DevToolsCore Framework Reference.看起来像框架的API( – (id)initWithName:(id)arg1 productTypeIdentifier:(id)arg2).

但是找不到任何其他文件,只是这个问题(xcode-info-plist-build-variable-product-namerfc1034identifier-seems-complete).

猜你在找的iOS相关文章