我应该在.clang格式文件中为类型和协议名称之间的空格添加什么标志?

时间:2014-04-24 06:57:10

标签: ios objective-c xcode coding-style clang

这是默认行为:

  @property (nonatomic, assign) id<ViewDelegate> delegate;
  - (void)initWithRestaurant:(Restaurant<ViewDelegate> *)restaurant;

我想要这个:

  @property (nonatomic, assign) id <ViewDelegate> delegate;
  - (void)initWithRestaurant:(Restaurant <ViewDelegate> *)restaurant;

在这里找不到正确的旗帜: http://llvm.org/releases/3.4/tools/clang/docs/ClangFormatStyleOptions.html

1 个答案:

答案 0 :(得分:0)

这可能是ObjCSpaceBeforeProtocolList(记录here)吗?