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 选项卡中,但我还没有找到正确的设置。谢谢你的想法。