Hi,
In the December Dev tools update the release notes state:
? Build settings can now be referenced in the Info.plist Settings dictionary of a target. _
The syntax is the same as elsewhere, i.e. $VAR, $(VAR), and ${VAR} are all recognized. _
For example, if you have a build setting named CURRENT_VERSION, you can use its value in any of the values in the Info.plist dictionary
(e.g. CFBundleGetInfoString = "MyApp v$(CURRENT_VERSION)"). _
Any build setting reference that either uses invalid syntax or references an undefined build setting are left untouched
?if, for example, the value of the NSHumanReadableCopyright _key is "Shareware $10", the ?$10? part will be left untouched.
Also, only references in dictionary values are expanded?dictionary keys cannot contain references to build settings."
however I cannot get this to work - e.g.
http://www.monkeyfood.com/thestuff/f...x/Settings.jpg
and
http://www.monkeyfood.com/thestuff/f...eBox/Plist.jpg
only result in:
http://www.monkeyfood.com/thestuff/f...ox/GetInfo.jpg
Has anyone had better results?