Xcode 禁用冒号对齐自动缩进

发布于 2024-08-28 17:24:33 字数 552 浏览 4 评论 0原文

当将长方法名称分解为多行时,是否有任何方法可以禁用 Xcode 执行的自动缩进以对齐冒号?

也就是说,我不想这样:

UIBarButtonItem *longDescriptiveButton = [[UIBarButtonItem alloc] initWithTitle:@"Title of Button"
                                                                          style:UIBarButtonItemStyleBordered
                                                                         target:self
                                                                         action:@selector(longDescriptiveButtonClicked)];

正如您所看到的,当变量/方法/类名称很长时,它看起来很糟糕。

Is there any way to disable the auto-indent Xcode performs to align colons when breaking up a long method name into multiple lines?

That is, I'd rather not have this:

UIBarButtonItem *longDescriptiveButton = [[UIBarButtonItem alloc] initWithTitle:@"Title of Button"
                                                                          style:UIBarButtonItemStyleBordered
                                                                         target:self
                                                                         action:@selector(longDescriptiveButtonClicked)];

which, as you can see, looks terrible when variable/method/class names are long.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

忆梦 2024-09-04 17:24:33

不完全是您正在寻找的答案,但我正在使用 uncrustify 进行代码格式化。我通过热键从 Xcode 脚本菜单运行它。

Not completely the answer you are looking for, but I'm using uncrustify to do code formatting. I run it from the Xcode scripts menu via a hot key.

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