如何通过XCode模板

时间:2016-05-11 12:50:39

标签: ios xcode templates

我尝试通过XCode模板在目标中添加swift编译器自定义标志

默认

swift compiler custom flag in target

<key>Targets</key>
    <array>
        <dict>
            <key>Configurations</key>
            <dict>
                <key>Debug</key>
                <dict/>
                <key>Release</key>
                <dict/>
            </dict>
            <key>Name</key>
            <string>___PACKAGENAME___</string>
            <key>SharedSettings</key>
            <dict>
                <key>OTHER_SWIFT_FLAGS</key>
                <array>
                    <key>Debug</key>
                    <string>-DDEBUG</string>
                </array>
            </dict>
        </dict>
    </array>

模板

Xcode Templates

我想只访问调试密钥。有可能吗?

1 个答案:

答案 0 :(得分:1)

你快到了!

这就是NSArray应该是这样的

NSDictionary

TemplateInfo.plist

这是结果

Build Settings