如何用clang格式格式化objective-c双参数块?

如何用clang格式格式化objective-c双参数块?,objective-c,xcode,clang-format,Objective C,Xcode,Clang Format,例如,我有以下代码: [UIView animateWithDuration:10 animations:^{ } completion:^(BOOL finished) { }] 当我对其应用clang格式时,它会变成: [UIView animateWithDuration:10 animations:^{ } completion:^(BOOL finished){ }]; 如您所见,第二个块参数位于新行中 我的风格: AlignTrailingComments

例如,我有以下代码:

[UIView animateWithDuration:10 animations:^{

} completion:^(BOOL finished) {

}]
当我对其应用clang格式时,它会变成:

[UIView animateWithDuration:10 animations:^{

}
    completion:^(BOOL finished){

    }];
如您所见,第二个块参数位于新行中

我的风格:

AlignTrailingComments: true
BasedOnStyle: Chromium
BreakBeforeBraces: Allman
ColumnLimit: 0
IndentWidth: 4
TabWidth: 8
ObjCSpaceAfterProperty: true
ObjCSpaceBeforeProtocolList: true
ObjCBlockIndentWidth: 4
PointerBindsToType: false
SpacesBeforeTrailingComments: 1
SpacesInSquareBrackets: false
SpacesInContainerLiterals: false
#SpaceInEmptyParentheses: true
SpacesInParentheses: false
UseTab: Never
KeepEmptyLinesAtTheStartOfBlocks: false
#SpaceAfterCStyleCast: true