问题描述
我想更改 Xcode IDE 的组和文件"面板的字体大小.我知道如何更改首选项中的字体和颜色",但那些(似乎)只影响代码窗口,而不影响 IDE 的其余部分.有任何想法吗?谢谢!
I'd like to change the font size of the "Groups & Files" panel of the Xcode IDE. I know how to change the "Fonts & Colors" in the preferences, but those (seem to) only affect the code window, not the rest of the IDE. Any ideas? Thanks!
推荐答案
我相信你可以改变 Groups &通过在 ~Library/Preferences/com.apple.Xcode.plist
中设置 PBXTableFontSize 参数来显示文件窗格.这个需要先设置PBXTableFont才能生效.
I believe you can change the size of the Groups & Files pane by setting the PBXTableFontSize parameter in ~Library/Preferences/com.apple.Xcode.plist
. This needs PBXTableFont to be set first to take effect.
1) 在终端中运行 defaults write com.apple.Xcode PBXTableFontSize 20
,将 20
替换为您希望使用的任何值.
2) 在终端中运行 defaults write com.apple.Xcode PBXTableFont Helvetica
,用 Helvetica
替换您希望使用的字体.我不确定 OS X 的默认 Sans Serif 字体是什么,但 Helvetica 非常通用.
1) Run defaults write com.apple.Xcode PBXTableFontSize 20
in Terminal, substituting 20
for whatever value you wish to use.
2) Run defaults write com.apple.Xcode PBXTableFont Helvetica
in Terminal, substituting Helvetica
for the font you wish to use. I'm not sure what OS X's default Sans Serif font is, but Helvetica is pretty generic.
这篇关于我可以更改 Xcode IDE 字体的大小吗?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!