【发布时间】:2013-04-29 22:36:38
【问题描述】:
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 选项卡中,但我还没有找到正确的设置。 感谢您的想法。
【问题讨论】:
标签: objective-c coding-style appcode