是否可以在指令之前/之后添加一些空行#pragma mark -
?如果这很重要,我指的是 objC 中的 Xcode 4.2 和 iOS 开发。
[编辑] 我的意思是类似于以下内容:
// Some code here, and then 1 empty line
#pragma mark - Whatever
// Some other code here, after 1 empty line
变成使用 uncrustify:
// Some code here, and then 2 empty lines
#pragma mark - Whatever
// Some other code here, after 2 empty lines