除了在构建时设置版本控制之外,在.pList中设置几个自定义值非常有用.
这可能吗?
解决方法 您可以通过利用“预执行”选项来运行脚本,从而在构建时编辑Info.pList.这是一个示例脚本,它增加了PList中名为UserdefinedVersionNumber的Key
#!/bin/sh#Grabs info from pListpList=$SRCROOT"/"$INFOPList_filecurrentBuild=`/usr/libexec/PListBuddy -c "Print :UserdefinedVersionNumber" "$pList"`#And changes it before writing out the pList againif [ -z "$currentBuild" ]then currentBuild=1 /usr/libexec/PListBuddy -c "Add :UserdefinedVersionNumber string $currentBuild" "$pList"else currentBuild=$(($currentBuild + 1)); /usr/libexec/PListBuddy -c "Set :UserdefinedVersionNumber $currentBuild" "$pList"fi
您应该可以直接在该小框中键入脚本,但我发现编辑和维护它可能会很麻烦,尤其是对于共享脚本.
总结以上是内存溢出为你收集整理的ios – 有没有一种方法可以在构建阶段自动将自定义值写入bundle的.plist?全部内容,希望文章能够帮你解决ios – 有没有一种方法可以在构建阶段自动将自定义值写入bundle的.plist?所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)