4

Code->Style->Objective-C的首选项中有很多设置。我正在寻找合适的人来重新格式化这行代码

SCPropertyDefinition *test = [SCPropertyDefinition definitionWithName:@"created_at" title:@"Tweeted At" type:SCPropertyTypeLabel];

到这种格式

SCPropertyDefinition *test = [SCPropertyDefinition definitionWithName:@"created_at" 
                                                                title:@"Tweeted At" 
                                                                 type:SCPropertyTypeLabel];

(重点是让冒号缩进匹配)

我猜它应该在 Wrapping and Braces 选项卡中,但我还没有找到正确的设置。谢谢你的想法。

4

2 回答 2

12

您要查找的Wrapping and Braces | Method call arguments设置设置为Chop down if long启用Align by colon。请注意,有单独的设置Method parameters

于 2013-04-30T14:12:04.610 回答
1

从 App Code 2017.1(也许更早)开始,Swift 中似乎不提供按冒号对齐的选项。你仍然可以告诉 App Code 砍掉一个长的参数/参数列表:

如何找到斩长线对话框

于 2017-04-11T16:06:15.307 回答