uncrustify で#pragma mark -
ディレクティブの前後にいくつかの空の行を追加することは可能ですか? それが重要な場合は、Xcode 4.2 と objC での 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