XCode 标识/括号首选项

发布于 2024-11-04 14:10:46 字数 370 浏览 1 评论 0原文

我正在尝试调整 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

幽蝶幻影 2024-11-11 14:10:46

您可以通过 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 with defaults:

Source Code Formatting User Defaults

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文