我有一个项目(A),由项目(B)和(C)使用。在Xcode-> preferences->位置我有一个名为PROJECT_SRC的设置项目A引用,当我在B.xcodeproj上工作时,它被设置为B的源路径。如果我想使用C.xcodeproj,我必须手动更改设置以指向C的源代码。有没有办法动态改变这个设置?
提前致谢! 克里斯
答案 0 :(得分:0)
所以我认为我需要做的是使用System Events plist编辑功能。我可以通过苹果脚本来做到这一点(我的确不会这样,但你明白了):
tell application "System Events"
set plistFile to property list file "/path/to/file.plist"
tell plistFile
tell property list item "array name"
set value of property list item "x" to "..."
end tell
end tell
end tell
我在苹果论坛here
中找到了这个您需要编辑以更改源路径的plist位于Users / userName / Preferences / come.apple.dt.Xcode.plist
中