块的Objective-C clang格式

Vap*_*olf 6 objective-c ios clang-format

我已经搜索了谷歌并用我的.clang格式文件修补了几个小时了.

我希望我的块看起来像这样:

[UIView animateWithDuration:0.3 animations:^{
    label.alpha = 0;
} completion:^(BOOL finished) {
    label.hidden = YES;
}];
Run Code Online (Sandbox Code Playgroud)

不是这个:

[UIView animateWithDuration:0.3 animations:^{
    label.alpha = 0;
}
    completion:^(BOOL finished) {
        label.hidden = YES;
    }];
Run Code Online (Sandbox Code Playgroud)

我似乎无法找到正确的参数或参数组.

我也给了Uncrustify一个镜头,但是用新的配置文件语法盯着是不可取的,特别是如果有一个clang格式的解决方案.

wei*_*uaa -3

// clang-format off

[UIView animateWithDuration:1 animations:^{

} completion:^(BOOL finished){

}];
// clang-format on
Run Code Online (Sandbox Code Playgroud)