块的Objective-C clang格式

时间:2016-03-06 02:28:02

标签: ios objective-c clang-format

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

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

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

不是这个:

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

我似乎找不到合适的参数或参数组。

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

1 个答案:

答案 0 :(得分:-3)

// clang-format off

[UIView animateWithDuration:1 animations:^{

} completion:^(BOOL finished){

}];
// clang-format on