如何让Xcode 4的文档窗口基于外部样式表进行渲染?

时间:2011-10-05 10:52:00

标签: xcode4

我曾经能够通过设置以下内容,让Xcode 3的文档/帮助窗口基于外部样式表进行渲染:

  

默认写com.apple.Xcode DVDocView.WebKitUserStyleSheetLocationPreferenceKey   “〜/ Library / Application Support / Firefox / Profiles / xxxxxxxx.default / chrome / userContent.css”

     

默认写com.apple.Xcode DVDocView.WebKitUserStyleSheetEnabledPreferenceKey 1

上述内容不再适用于Xcode 4?有什么想法吗?

1 个答案:

答案 0 :(得分:1)

plist文件的名称和要使用的键已更改。你现在应该使用:

defaults write com.apple.dt.Xcode WebKitUserStyleSheetLocationPreferenceKey "/path/to/css"
defaults write com.apple.dt.Xcode WebKitUserStyleSheetEnabledPreferenceKey 1