I have this code:
dispatch_async(dispatch_get_main_queue(), ^{
if (self.adAppearBlockIsAnimated) {
[UIView animateWithDuration:kAnimationTime animations:^{
self.adAppearBlock();
}];
}
});
Unfortunately, Uncrustify makes it look like:
dispatch_async(dispatch_get_main_queue(), ^{
if (self.adAppearBlockIsAnimated) {
[UIView animateWithDuration:kAnimationTime animations:^{
self.adAppearBlock();
}];
}
});
My config:
indent_oc_block=true
indent_oc_block_msg = 0
Does anyone know how to make it look normal? Without extra spaces in nested block.
EDIT: I cannot comment now, I am using xCode.