XCode 标识/括号首选项
我正在尝试调整 XCode 4 的首选项以自动创建这种缩进样式。可能不常见,但我喜欢。 VS.Net 有这方面的设置,关于如何在 XCode 中实现相同的效果有什么想法吗?
- (Tile*)initWithValues:(int) x andY:(int) y andOffX:(int) ox andOffY:(int) oy
{
self = [super init];
if (self)
{
posX = x;
posY = y;
offsetX = ox;
offsetY = oy;
return self;
}
}
I'm trying to adjust XCode 4's preferences to automatically create this indentation style. Might be uncommon, but I like it. VS.Net has settings for this, any ideas on how to achieve the same in XCode?
- (Tile*)initWithValues:(int) x andY:(int) y andOffX:(int) ox andOffY:(int) oy
{
self = [super init];
if (self)
{
posX = x;
posY = y;
offsetX = ox;
offsetY = oy;
return self;
}
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以通过 Xcode 首选项的“文本编辑”窗格执行一些操作,但要执行任何有趣的操作,您需要从命令行使用
defaults
。 Apple 有专门用于使用默认值自定义 Xcode 行为的文档:源代码格式化用户默认值
You can do a little bit of this through the Text Editing pane of Xcode's preferences, but to do anything interesting you'll need to use
defaults
from the command line. Apple has documentation devoted to customizing Xcode behaviors withdefaults
:Source Code Formatting User Defaults